]> git.pld-linux.org Git - packages/cuyo.git/blob - cuyo.spec
0253958f3573eb59489f7cd80a4f19f31c2867ff
[packages/cuyo.git] / cuyo.spec
1 Summary:        Cuyo - a Tetris clone
2 Summary(pl):    Cuyo - klon Tetrisa
3 Name:           cuyo
4 Version:        1.6.0alpha5
5 Release:        1
6 License:        GPL
7 Group:          X11/Applications/Games
8 Source0:        http://freesoftware.fsf.org/download/%{name}/%{name}-%{version}.tar.gz
9 # Source0-md5:  271db9b6c99cc7f8011dbd9edec9fd3a
10 Patch0:         %{name}-make.patch
11 URL:            http://www.karimmi.de/cuyo/
12 BuildRequires:  automake
13 BuildRequires:  autoconf
14 BuildRequires:  qt-devel
15 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
16
17 %description
18 Cuyo is an interesting Tetris clone.
19
20 %description -l pl
21 Cuyo to ciekawy klon Tetrisa.
22
23 %prep
24 %setup -q
25 %patch0 -p1
26
27 %build
28 rm -f missing
29 %{__aclocal} -I .
30 %{__autoconf}
31 %{__automake}
32 %configure
33 %{__make}
34
35 %install
36 #Could somebody help me to force automake using DESTDIR? //pascalek
37 rm -rf $RPM_BUILD_ROOT
38 install -d $RPM_BUILD_ROOT{%{_bindir},%{_datadir}/%{name}/pics,%{_mandir}/man6}
39
40 cp src/%{name} $RPM_BUILD_ROOT%{_bindir}
41 cp data/*.ld $RPM_BUILD_ROOT%{_datadir}/%{name}
42 cp data/pics/* $RPM_BUILD_ROOT%{_datadir}/%{name}/pics
43 cp docs/%{name}.6 $RPM_BUILD_ROOT%{_mandir}/man6
44
45 %clean
46 rm -rf $RPM_BUILD_ROOT
47
48 %files
49 %defattr(644,root,root,755)
50 %doc AUTHORS ChangeLog NEWS TODO README docs/cual
51 %attr(755,root,root) %{_bindir}/%{name}
52 %dir %{_datadir}/%{name}
53 %{_datadir}/%{name}/*.ld
54 %dir %{_datadir}/%{name}/pics
55 %{_datadir}/%{name}/pics/*
56 %{_mandir}/man6/*
This page took 0.065356 seconds and 2 git commands to generate.