source: projects/specs/trunk/h/hitori/hitori-vl.spec @ 521

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

import VineSeed package specs

Line 
1%define pkg_version 0.2.3
2%define pkg_release 1%{?_dist_release}
3
4Summary: A logic game similar to Sudoku
5Summary(ja): 数独に類似した論理ゲーム
6Name:        hitori
7Version:     %{pkg_version}
8Release:     %{pkg_release}
9Source0:     %{name}-%{version}.tar.bz2
10License:     GPLv3+
11Group: Applications/Games
12URL: http://live.gnome.org/Hitori
13
14Requires: gtk2
15BuildRequires: gtk2-devel
16BuildRequires: gnome-doc-utils
17BuildRequires: which
18BuildRoot: %{_tmppath}/%{name}-%{version}-root
19
20Vendor: Project Vine
21Distribution: Vine Linux
22Packager: Takemikaduchi
23
24
25%description
26Hitori is a small application written to allow one to play the eponymous puzzle game, which is similar in theme to more popular puzzles such as Sudoku.
27
28%description -l ja
29Hitori は数独のようなより人気のあるパズルとテーマにおいて類似した小さなゲームアプリケーションです。
30
31%prep
32%setup -q
33
34%build
35%configure
36%{__make} %{?_smp_mflags}
37
38
39%install
40%{__rm} -rf ${RPM_BUILD_ROOT}
41%{__make} install DESTDIR=${RPM_BUILD_ROOT}
42
43%find_lang %{name}
44
45
46%clean
47%{__rm} -rf ${RPM_BUILD_ROOT}
48
49
50%files -f %{name}.lang
51%defattr(-,root,root)
52%doc COPYING ChangeLog NEWS README
53%{_bindir}/*
54%{_datadir}/*
55
56
57%changelog
58* Sun Jan 10 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.2.3-1
59- initial build for Vine Linux
60
61# end of file
62
Note: See TracBrowser for help on using the repository browser.