qqwing-vl.spec 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. Name: qqwing
  2. Summary: Sudoku generating and solving software
  3. Summary(ja): 数独生成&解析ソフトウェア
  4. Version: 1.3.4
  5. Release: 2%{?_dist_release}
  6. License: GPLv2
  7. Group: Applications/Games
  8. URL: http://qqwing.com/
  9. Source: %{name}-%{version}.tar.gz
  10. BuildRoot: %{_tmppath}/%{name}-%{version}-root
  11. Vendor: Project Vine
  12. Distribution: Vine Linux
  13. Packager: Takemikaduchi
  14. %description
  15. QWing is Sudoku generating and solving software that has been ported
  16. to 3 programming languages: C++, Java, and JavaScript.
  17. Various versions are available to run on different platforms and
  18. different environments.
  19. %package devel
  20. Summary: Development tools for %{name}
  21. Summary(ja): %{name} の開発環境
  22. Group: Development/Libraries
  23. Requires: %{name} = %{version}-%{release}
  24. Requires: pkgconfig
  25. %description devel
  26. Header files and libraries for building a extension library for the %{name}.
  27. %prep
  28. %setup -q
  29. %build
  30. %configure
  31. make %{?_smp_mflags}
  32. %install
  33. rm -rf $RPM_BUILD_ROOT
  34. make install DESTDIR=$RPM_BUILD_ROOT
  35. find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} \;
  36. %clean
  37. rm -rf $RPM_BUILD_ROOT
  38. %post -p /sbin/ldconfig
  39. %postun -p /sbin/ldconfig
  40. %files
  41. %defattr(-,root,root,-)
  42. %doc COPYING NEWS
  43. %{_bindir}/%{name}
  44. %{_libdir}/libqqwing.so.*
  45. %{_mandir}/man1/%{name}.1.gz
  46. %files devel
  47. %defattr(-,root,root,-)
  48. %{_includedir}/qqwing.hpp
  49. %{_libdir}/libqqwing.so
  50. %{_libdir}/pkgconfig/qqwing.pc
  51. %changelog
  52. * Sat Jul 2 2016 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.3.4-2
  53. - rebuilt with new toolchain.
  54. * Sun Nov 01 2015 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.3.4-1
  55. - new upstream release
  56. * Tue Oct 28 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.3.2-1
  57. - initial build