chrpath-vl.spec 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. Summary: Modify rpath of compiled programs
  2. Name: chrpath
  3. Version: 0.13
  4. Release: 1%{?_dist_release}
  5. License: GPL+
  6. Group: Development/Tools
  7. URL: ftp://ftp.hungry.com/pub/hungry/chrpath/
  8. Patch0: chrpath-0.13-NULL-entry.patch
  9. Source0: ftp://ftp.hungry.com/pub/hungry/chrpath/%{name}-%{version}.tar.gz
  10. BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
  11. %description
  12. chrpath allows you to modify the dynamic library load path (rpath) of
  13. compiled programs. Currently, only removing and modifying the rpath
  14. is supported.
  15. %prep
  16. %setup -q
  17. %patch0 -p1 -b .NULL
  18. %build
  19. %configure
  20. make
  21. %install
  22. rm -rf %{buildroot}
  23. make install DESTDIR=%{buildroot}
  24. rm -fr %{buildroot}/usr/doc
  25. %clean
  26. rm -rf %{buildroot}
  27. %files
  28. %defattr(-,root,root,-)
  29. %doc AUTHORS COPYING README NEWS ChangeLog*
  30. %{_bindir}/chrpath
  31. %{_mandir}/man1/chrpath.1*
  32. %changelog
  33. * Sat Sep 26 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 0.13-1
  34. - initial build for Vine Linux
  35. * Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.13-6
  36. - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
  37. * Thu Jul 23 2009 Axel Thimm <Axel.Thimm@ATrpms.net> - 0.13-5
  38. - Fix last entry in .dynamic (by Christian Krause <chkr@plauener.de>).
  39. * Sat Sep 8 2007 Ville Skyttä <ville.skytta at iki.fi> - 0.13-2
  40. - License: GPL+
  41. * Sun Mar 12 2006 Axel Thimm <Axel.Thimm@ATrpms.net> - 0.13-1
  42. - Initial build.