four-in-a-row-vl.spec 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. Name: four-in-a-row
  2. Summary: GNOME "Four in a row"
  3. Summary(ja): GNOME "Four in a row"
  4. Version: 3.10.1
  5. Release: 2%{?_dist_release}
  6. License: GPLv2
  7. Group: Applications/Games
  8. URL: https://live.gnome.org/Four-in-a-row
  9. Source: ftp://ftp.gnome.org/pub/gnome/sources/%{name}/3.10/%{name}-%{version}.tar.xz
  10. BuildRoot: %{_tmppath}/%{name}-%{version}-root
  11. BuildRequires: gtk3-devel
  12. BuildRequires: librsvg2-devel
  13. BuildRequires: libcanberra-gtk3-devel
  14. BuildRequires: yelp-tools
  15. Requires(postun,posttrans): desktop-file-utils
  16. Requires(postun,posttrans): gtk3
  17. Vendor: Project Vine
  18. Distribution: Vine Linux
  19. Packager: Takemikaduchi
  20. %description
  21. Four-in-a-row is to build a line of four of your marbles while trying to stop
  22. your opponent (human or computer) building a line of his or her own. A line can
  23. be horizontal, vertical or diagonal.
  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} --with-gnome
  33. %clean
  34. rm -rf $RPM_BUILD_ROOT
  35. %post
  36. touch %{_datadir}/icons/hicolor
  37. gtk-update-icon-cache -q %{_datadir}/icons/hicolor > /dev/null || :
  38. %postun
  39. if [ $1 -eq 0 ]; then
  40. touch %{_datadir}/icons/hicolor
  41. gtk-update-icon-cache -q %{_datadir}/icons/hicolor > /dev/null || :
  42. glib-compile-schemas %{_datadir}/glib-2.0/schemas ||:
  43. update-desktop-database -q > /dev/null || :
  44. fi
  45. %posttrans
  46. glib-compile-schemas %{_datadir}/glib-2.0/schemas ||:
  47. update-desktop-database -q > /dev/null || :
  48. %files -f %{name}.lang
  49. %defattr(-, root, root)
  50. %doc COPYING NEWS
  51. %{_bindir}/%{name}
  52. %{_datadir}/appdata/four-in-a-row.appdata.xml
  53. %{_datadir}/applications/gnect.desktop
  54. %{_datadir}/glib-2.0/schemas/org.gnome.four-in-a-row.gschema.xml
  55. %{_datadir}/%{name}
  56. %{_datadir}/icons/hicolor/*/apps/%{name}.*
  57. %{_datadir}/icons/HighContrast/*/apps/%{name}.*
  58. %{_mandir}/man6/%{name}.6.gz
  59. %changelog
  60. * Sat Jan 04 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.10.1-2
  61. - rebuild with VineSeed environment
  62. * Sat Oct 26 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.10.1-1
  63. - new upstream release
  64. * Sun Apr 21 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.8.1-1
  65. - initial build