]> git.pld-linux.org Git - SPECS.git/blob - naughts_and_crosses.spec
SPECS updated Wed 28 Jul 14:48:01 CEST 2021
[SPECS.git] / naughts_and_crosses.spec
1 Summary:        Simple tic-tac-toe game
2 Summary(pl.UTF-8):      Prosta gra w kółko i krzyżyk
3 Name:           naughts_and_crosses
4 Version:        0.83
5 Release:        1
6 License:        GPL v2+
7 Group:          Applications/Games
8 Source0:        http://www.jamyskis.net/downloads/%{name}-%{version}.tar.gz
9 # Source0-md5:  6a49a4c569dd44ec4e43e44ab0b21fd2
10 Patch0:         %{name}-useless_files.patch
11 URL:            http://www.jamyskis.net/naughts.php
12 BuildRequires:  allegro-devel >= 4.2.0
13 BuildRequires:  autoconf
14 BuildRequires:  automake
15 BuildRequires:  libstdc++-devel
16 BuildRequires:  libtool >= 2:1.5
17 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
18
19 %description
20 This is a simple tic-tac-toe game.
21
22 %description -l pl.UTF-8
23 Prosta gra w kółko i krzyżyk.
24
25 %prep
26 %setup -q
27 %patch0 -p1
28
29 %build
30 %{__libtoolize}
31 %{__aclocal}
32 %{__autoconf}
33 %{__automake}
34 %configure
35 %{__make}
36
37 %install
38 rm -rf $RPM_BUILD_ROOT
39
40 %{__make} install \
41         DESTDIR=$RPM_BUILD_ROOT
42
43 %clean
44 rm -rf $RPM_BUILD_ROOT
45
46 %files
47 %defattr(644,root,root,755)
48 %doc doc/{AUTHORS,ChangeLog,NEWS,README,TODO}
49 %attr(755,root,root) %{_bindir}/%{name}
50 %{_datadir}/%{name}
This page took 0.172235 seconds and 3 git commands to generate.