source: projects/specs/trunk/a/atilo/atilo-vl.spec @ 521

Revision 521, 1.5 KB checked in by daisuke, 14 years ago (diff)

import VineSeed package specs

Line 
1Summary: A program that plays Othello/Reversi
2Summary(ja): リバーシゲーム
3Name: atilo
4Version: 1.1
5Release: 3%{?_dist_release}
6License: GPL
7Group: Applications/Games
8Source0: ftp://download.sourceforge.net/pub/sourceforge/atilo/%{name}-%{version}.tar.gz
9Source1: %{name}.desktop
10Source2: %{name}.png
11
12BuildRequires: gtk2-devel
13URL: http://atilo.sourceforge.net/
14Buildroot: %{_tmppath}/%{name}-%{version}-root
15
16Vendor: Project Vine
17Distribution: Vine Linux
18
19%description
20This program allows the user to play the game of Othello/Reversi
21against his computer.
22
23%description -l ja
24コンピューター相手のリバーシゲームが出来ます。
25
26%prep
27%setup -q
28
29%build
30unset DEBUG
31make
32
33%install
34rm -rf $RPM_BUILD_ROOT
35
36%{__make} install \
37        DESTDIR=$RPM_BUILD_ROOT
38
39# add desktop
40mkdir -p $RPM_BUILD_ROOT/%{_datadir}/applications
41install -p -m0644 %{SOURCE1} $RPM_BUILD_ROOT/%{_datadir}/applications/%{name}.desktop
42
43# add desktop icon
44mkdir -p $RPM_BUILD_ROOT/%{_datadir}/pixmaps
45install -p -m0644 %{SOURCE2} $RPM_BUILD_ROOT/%{_datadir}/pixmaps/%{name}.png
46
47%files
48%doc AUTHOR README
49%{_bindir}/*
50%{_datadir}/
51
52%clean
53rm -rf $RPM_BUILD_ROOT
54
55%changelog
56* Sun Sep 14 2008 Shu KONNO <owa@bg.wakwak.com> 1.1-3vl5
57- applied new versioning policy, spec in utf-8
58
59* Tue Aug  8 2006 Ryoichi INAGAKI <ryo1@bc.wakwak.com> - 1.1-2vl2
60- rebuilt for Vine Seed (4.0)
61- added BuildRequires: gtk2-devel
62- changed Group to Applications/Games
63
64* Fri Feb 18 2005 OOI Keita <ooik.ovwqlsjxcqwg4dc@privango.jp> - 1.1-2vl1
65- add ja summary and description
66- add desktop entry and icon
Note: See TracBrowser for help on using the repository browser.