-
Notifications
You must be signed in to change notification settings - Fork 2
/
plonk.spec
44 lines (37 loc) · 988 Bytes
/
plonk.spec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# no post install
#%define __os_install_post %{nil}
# no strip
#%define __strip /bin/true
# no debug package
#%define debug_package %{nil}
# disable automatic dependency processing
#AutoReqProv: no
Name: com.thpinfo.plonk
Version: 1.0.3
Release: 1
License: GPLv3 or later
Summary: A multi-touch pong-like game for two players
Url: http://thp.io/2011/plonk/
Group: Games/Sports
Source0: %{name}-%{version}.tar.gz
#BuildRequires: pkgconfig(QtCore)
BuildRequires: libqt-devel libqtopengl-devel
%description
# Add here description of the package.
%prep
%setup -q
%build
# Add here commands to configure the package.
#%qmake
#qmake -makefile -nocache QMAKE_STRIP=: PREFIX=%{_prefix}
# Add here commands to compile the package.
#make %{?jobs:-j%jobs}
#make %{?_smp_mflags}
make
%install
# Add here commands to install the package.
#%qmake_install
make install INSTALL_ROOT=%{buildroot}
%files
%defattr(-,root,root,-)
/*