libofx-vl.spec 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. Summary: A library for supporting Open Financial Exchange (OFX)
  2. Name: libofx
  3. Version: 0.9.0
  4. Release: 1%{?_dist_release}
  5. Source: http://download.sourceforge.net/libofx/%{name}-%{version}.tar.gz
  6. Group: System Environment/Libraries
  7. License: GPL
  8. BuildRoot: %{_tmppath}/%{name}-%{version}-root
  9. BuildRequires: openjade >= 1.3.1
  10. BuildRequires: opensp-devel
  11. Requires: openjade >= 1.3.1
  12. Requires(post,postun): /sbin/ldconfig
  13. %description
  14. This is the LibOFX library. It is a API designed to allow applications to
  15. very easily support OFX command responses, usually provided by financial
  16. institutions. See http://www.ofx.net/ofx/default.asp for details and
  17. specification.
  18. %package devel
  19. Summary: Development files needed for accessing OFX data.
  20. Group: Development/Libraries
  21. Requires: %{name} = %{version}-%{release}
  22. %description devel
  23. The libofx-devel contains the header files and libraries necessary
  24. for building applications that use libofx.
  25. %prep
  26. %setup -q
  27. %build
  28. %configure --with-opensp-libs=%{_libdir}
  29. make %{?_smp_mflags}
  30. %install
  31. rm -rf $RPM_BUILD_ROOT
  32. %makeinstall
  33. rm -rf $RPM_BUILD_ROOT/%{_libdir}/*a $RPM_BUILD_ROOT/%{_datadir}/doc
  34. %clean
  35. rm -rf $RPM_BUILD_ROOT
  36. %post -p /sbin/ldconfig
  37. %postun -p /sbin/ldconfig
  38. %files
  39. %defattr(-,root,root)
  40. %doc AUTHORS COPYING ChangeLog INSTALL NEWS README totest.txt
  41. %{_bindir}/*
  42. %{_libdir}/*.so.*
  43. %{_datadir}/libofx/dtd
  44. %files devel
  45. %defattr(-,root,root)
  46. %doc doc/html doc/ofx_sample_files
  47. %{_includedir}/*
  48. %{_libdir}/*.so
  49. %{_libdir}/pkgconfig/*.pc
  50. %changelog
  51. * Thu Sep 25 2008 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 0.9.0-1
  52. - new upstream release
  53. * Sat Dec 29 2007 NAKAMURA Kenta <kenta@vinelinux.org> 0.8.3-0vl1
  54. - new upstream release
  55. - dropped Patch: libofx-0.7.0-gcc4.patch
  56. * Sun May 20 2007 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 0.8.0-0vl3
  57. - add BuildRequires: opensp-devel
  58. * Sat May 19 2007 Daisuke SUZUKI <daisuke@linux.or.jp> 0.8.0-0vl2
  59. - rebuild with new environment
  60. * Sun Oct 23 2005 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 0.8.0-0vl1
  61. - new upstream release
  62. * Mon May 23 2005 Bill Nottingham <notting@redhat.com> 0.7.0-3
  63. - remove static libs
  64. * Tue Mar 8 2005 Bill Nottingham <notting@redhat.com> 0.7.0-2
  65. - fix build with gcc4
  66. * Wed Feb 9 2005 Bill Nottingham <notting@redhat.com> 0.7.0-1
  67. - update to 0.7.0
  68. * Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com> 0.6.6-2
  69. - rebuilt
  70. - Add gcc 3.4 patch
  71. * Fri Mar 12 2004 Bill Nottingham <notting@redhat.com> 0.6.6-1
  72. - split off from gnucash, adapt upstream spec, add -devel package