hitori-vl.spec 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. %define pkg_version 0.2.3
  2. %define pkg_release 1%{?_dist_release}
  3. Summary: A logic game similar to Sudoku
  4. Summary(ja): 数独に類似した論理ゲーム
  5. Name: hitori
  6. Version: %{pkg_version}
  7. Release: %{pkg_release}
  8. Source0: %{name}-%{version}.tar.bz2
  9. License: GPLv3+
  10. Group: Applications/Games
  11. URL: http://live.gnome.org/Hitori
  12. Requires: gtk2
  13. BuildRequires: gtk2-devel
  14. BuildRequires: gnome-doc-utils
  15. BuildRequires: which
  16. BuildRoot: %{_tmppath}/%{name}-%{version}-root
  17. Vendor: Project Vine
  18. Distribution: Vine Linux
  19. Packager: Takemikaduchi
  20. %description
  21. Hitori 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.
  22. %description -l ja
  23. Hitori は数独のようなより人気のあるパズルとテーマにおいて類似した小さなゲームアプリケーションです。
  24. %prep
  25. %setup -q
  26. %build
  27. %configure
  28. %{__make} %{?_smp_mflags}
  29. %install
  30. %{__rm} -rf ${RPM_BUILD_ROOT}
  31. %{__make} install DESTDIR=${RPM_BUILD_ROOT}
  32. %find_lang %{name}
  33. %clean
  34. %{__rm} -rf ${RPM_BUILD_ROOT}
  35. %files -f %{name}.lang
  36. %defattr(-,root,root)
  37. %doc COPYING ChangeLog NEWS README
  38. %{_bindir}/*
  39. %{_datadir}/*
  40. %changelog
  41. * Sun Jan 10 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.2.3-1
  42. - initial build for Vine Linux
  43. # end of file