ETL-vl.spec 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. %define pkg_version 0.04.16
  2. %define pkg_release 1%{?_dist_release}
  3. Summary: Extended Template Library
  4. Name: ETL
  5. Version: %{pkg_version}
  6. Release: %{pkg_release}
  7. Source0: %{name}-%{version}.tar.gz
  8. License: GPLv2
  9. Group: System Environment/Libraries
  10. URL: http://www.synfig.org/cms/
  11. BuildRoot: %{_tmppath}/%{name}-%{version}-root
  12. Vendor: Project Vine
  13. Distribution: Vine Linux
  14. Packager: Takemikaduchi
  15. %description
  16. ETL is a multi-platform class and template library designed to add
  17. new datatypes and functions which combine well with the existing
  18. types and functions from the C++ Standard Template Library (STL).
  19. %package devel
  20. Summary: Development files for ETL
  21. Group: Development/Libraries
  22. Requires: %{name} = %{version}-%{release}
  23. Requires: pkgconfig
  24. %description devel
  25. This package contains the libraries and header files that are needed
  26. for writing applications that are using ETL.
  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. %clean
  36. %{__rm} -rf $RPM_BUILD_ROOT
  37. %files
  38. %defattr(-,root,root,-)
  39. %doc AUTHORS COPYING ChangeLog NEWS README
  40. %files devel
  41. %defattr(-,root,root,-)
  42. %{_bindir}/ETL-config
  43. %{_includedir}/ETL/*
  44. %{_libdir}/pkgconfig/ETL.pc
  45. %changelog
  46. * Wed Aug 14 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.04.16-1
  47. - new upstream release
  48. * Mon Apr 30 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.04.15-1
  49. - new upstream release
  50. * Sat Oct 08 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.04.14-1
  51. - initial build for Vine Linux