]> git.pld-linux.org Git - packages/kulic.git/blame - kulic.spec
- desktop file
[packages/kulic.git] / kulic.spec
CommitLineData
bc45e916
ZU
1Summary: 2d shooting game
2Name: kulic
3Version: 1.1
4Release: 0.3
5License: GPL v2
6Group: X11/Applications/Games
7Source0: http://hippo.nipax.cz/src/%{name}-%{version}.tar.gz
8# Source0-md5: 16aff4bded3ae1c6712ca71d4d429730
9Patch0: %{name}-cstring.patch
10URL: http://hippo.nipax.cz/download.en.php
11BuildRequires: allegro-devel
12BuildRequires: automake
13BuildRequires: autoconf
14BuildRequires: libtool
15# Need for sound, imho allegro-alsa is the best solution
16Suggests: allegro-alsa
17# Suggests: allegro-arts
18# Suggests: allegro-esd
19# Suggests: allegro-jack
20BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
21
22%description
232d shooting game.
24
25%prep
26%setup -q
27%patch0 -p1
28%{__sed} -i "s,/usr/local,/usr,g" src/*.c*
29
30%build
31
32%{__libtoolize}
33%{__aclocal}
34%{__autoconf}
35%{__autoheader}
36%{__automake}
37
38%configure
39%{__make}
40
41%install
42rm -rf $RPM_BUILD_ROOT
43
44%{__make} install \
45 DESTDIR=$RPM_BUILD_ROOT
46
8b08665d
ZU
47install -d $RPM_BUILD_ROOT{%{_desktopdir},%{_pixmapsdir}}
48install misc/%{name}.desktop $RPM_BUILD_ROOT%{_desktopdir}
49install misc/%{name}.xpm $RPM_BUILD_ROOT%{_pixmapsdir}
50
bc45e916
ZU
51%clean
52rm -rf $RPM_BUILD_ROOT
53
54%files
55%defattr(644,root,root,755)
56%doc AUTHORS ChangeLog NEWS README
57%attr(755,root,root) %{_bindir}/*
58%{_datadir}/%{name}
59%{_mandir}/man6/kulic*
8b08665d
ZU
60%{_desktopdir}/%{name}.desktop
61%{_pixmapsdir}/%{name}.xpm
This page took 0.065475 seconds and 4 git commands to generate.