libnova-vl.spec 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. Name: libnova
  2. Summary: Libnova is a general purpose astronomy & astrodynamics library
  3. Version: 0.14.0
  4. Release: 1%{?_dist_release}
  5. License: LGPLv2+
  6. Group: System Environment/Libraries
  7. URL: http://sourceforge.net/projects/libnova/
  8. Source0: http://downloads.sourceforge.net/%{name}/%{name}-%{version}.tar.gz
  9. BuildRoot: %{_tmppath}/%{name}-%{version}-root
  10. %description
  11. Libnova is a general purpose, double precision, celestial mechanics,
  12. astrometry and astrodynamics library
  13. %package devel
  14. Summary: Development files for libnova
  15. Group: Development/Libraries
  16. Requires: %{name} = %{version}-%{release}
  17. %description devel
  18. Contains library and header files for libnova
  19. %prep
  20. %setup -q
  21. %build
  22. %configure --disable-static
  23. make CFLAGS="$RPM_OPT_FLAGS" %{?_smp_mflags}
  24. %install
  25. rm -rf $RPM_BUILD_ROOT
  26. make install DESTDIR=$RPM_BUILD_ROOT
  27. find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} ';'
  28. %clean
  29. rm -rf $RPM_BUILD_ROOT
  30. %post -p /sbin/ldconfig
  31. %postun -p /sbin/ldconfig
  32. %files
  33. %defattr(-,root,root,-)
  34. %doc ChangeLog README AUTHORS NEWS COPYING
  35. %{_libdir}/libnova-0.14.so.*
  36. %{_bindir}/libnovaconfig
  37. %files devel
  38. %doc COPYING examples/*.c
  39. %{_includedir}/libnova
  40. %{_libdir}/libnova.so
  41. %changelog
  42. * Sat Aug 27 2011 Ryoichi INAGAKI <ryo1@bc.wakwak.com> - 0.14.0-1
  43. - new upstream release
  44. * Thu Apr 15 2010 Ryoichi INAGAKI <ryo1@bc.wakwak.com> - 0.13.0-1
  45. - new upstream release
  46. * Sun Aug 30 2009 Ryoichi INAGAKI <ryo1@bc.wakwak.com> - 0.12.1-6
  47. - Initial build for Vine Linux
  48. * Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.12.1-5
  49. - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
  50. * Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.12.1-4
  51. - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
  52. * Tue Feb 19 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 0.12.1-3
  53. - Autorebuild for GCC 4.3
  54. * Sat Jan 12 2007 Huzaifa Sidhpurwala <huzaifas@redhat.com> - 0.12.1-2
  55. - Made changes to the Groups
  56. * Mon Jan 07 2007 Huzaifa Sidhpurwala <huzaifas@redhat.com> - 0.12.1-1
  57. - Made small changes to make it more complaint with fedora packaging standards
  58. * Thu Jan 04 2007 Huzaifa Sidhpurwala <huzaifas@redhat.com> - 0.12.1-0
  59. - Initial version.