libofx-vl.spec 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144
  1. Summary: A library for supporting Open Financial Exchange (OFX)
  2. Summary(ja): Open Finalcial Exchange (OFX) をサポートするためのライブラリ
  3. Name: libofx
  4. Version: 0.10.1
  5. Release: 1%{?_dist_release}
  6. Group: system
  7. Vendor: Project Vine
  8. Distribution: Vine Linux
  9. License: GPLv2
  10. URL: https://github.com/libofx/libofx
  11. Source0: https://github.com/libofx/libofx/archive/%{version}.tar.gz#/%{name}-%{version}.tar.gz
  12. BuildRoot: %{_tmppath}/%{name}-%{version}-root
  13. BuildRequires: curl-devel >= 7.9.7
  14. BuildRequires: gengetopt
  15. BuildRequires: help2man
  16. BuildRequires: libxml++-devel >= 2.6.0
  17. BuildRequires: openjade >= 1.3.1
  18. BuildRequires: opensp-devel
  19. Requires: openjade >= 1.3.1
  20. Requires(post,postun): /sbin/ldconfig
  21. %description
  22. This is the LibOFX library. It is a API designed to allow applications to
  23. very easily support OFX command responses, usually provided by financial
  24. institutions. See http://www.ofx.net/ofx/default.asp for details and
  25. specification.
  26. %package devel
  27. Summary: Development files needed for accessing OFX data.
  28. Summary(ja): OFX データのアクセスに必要な開発用ファイル
  29. Group: programming
  30. Requires: %{name} = %{version}-%{release}
  31. %description devel
  32. The libofx-devel contains the header files and libraries necessary
  33. for building applications that use libofx.
  34. %debug_package
  35. %prep
  36. %setup -q
  37. ./autogen.sh
  38. %build
  39. %configure --with-opensp-libs=%{_libdir}
  40. make %{?_smp_mflags}
  41. %install
  42. rm -rf $RPM_BUILD_ROOT
  43. %makeinstall
  44. rm -rf $RPM_BUILD_ROOT/%{_libdir}/*a $RPM_BUILD_ROOT/%{_datadir}/doc
  45. %clean
  46. rm -rf $RPM_BUILD_ROOT
  47. %post -p /sbin/ldconfig
  48. %postun -p /sbin/ldconfig
  49. %files
  50. %defattr(-,root,root)
  51. %license COPYING
  52. %doc AUTHORS ChangeLog NEWS README* totest.txt
  53. %{_bindir}/*
  54. %{_libdir}/*.so.*
  55. %{_datadir}/libofx/dtd
  56. %{_mandir}/man1/ofxconnect.1.gz
  57. %{_mandir}/man1/ofxdump.1.gz
  58. %files devel
  59. %defattr(-,root,root)
  60. %doc doc/html doc/ofx_sample_files
  61. %{_includedir}/*
  62. %{_libdir}/*.so
  63. %{_libdir}/pkgconfig/*.pc
  64. %changelog
  65. * Sat Feb 20 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 0.10.1-1
  66. - new upstream release.
  67. * Wed Sep 11 2019 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 0.9.14-1
  68. - new upstream release.
  69. * Tue Apr 21 2015 Ryoichi INAGAKI <ryo1@toki.waseda.jp> 0.9.10-2
  70. - revamped release no.
  71. * Sun Mar 8 2015 Ryoichi INAGAKI <ryo1@toki.waseda.jp> 0.9.10-1
  72. - updated to 0.9.10
  73. - added BR: curl-devel, help2man and libxml++-devel
  74. - added Japanese summary
  75. - added URL
  76. * Sun Sep 02 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.9.5-1
  77. - update to 0.9.5
  78. - remove Patch0 (libofx-0.9.0-glibc-headers.patch)
  79. * Mon Oct 04 2010 Shu KONNO <owa@bg.wakwak.com> 0.9.0-2
  80. - rebuilt with rpm-4.8.1 for pkg-config
  81. - added libofx-0.9.0-glibc-headers.patch
  82. * Thu Sep 25 2008 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 0.9.0-1
  83. - new upstream release
  84. * Sat Dec 29 2007 NAKAMURA Kenta <kenta@vinelinux.org> 0.8.3-0vl1
  85. - new upstream release
  86. - dropped Patch: libofx-0.7.0-gcc4.patch
  87. * Sun May 20 2007 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 0.8.0-0vl3
  88. - add BuildRequires: opensp-devel
  89. * Sat May 19 2007 Daisuke SUZUKI <daisuke@linux.or.jp> 0.8.0-0vl2
  90. - rebuild with new environment
  91. * Sun Oct 23 2005 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 0.8.0-0vl1
  92. - new upstream release
  93. * Mon May 23 2005 Bill Nottingham <notting@redhat.com> 0.7.0-3
  94. - remove static libs
  95. * Tue Mar 8 2005 Bill Nottingham <notting@redhat.com> 0.7.0-2
  96. - fix build with gcc4
  97. * Wed Feb 9 2005 Bill Nottingham <notting@redhat.com> 0.7.0-1
  98. - update to 0.7.0
  99. * Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com> 0.6.6-2
  100. - rebuilt
  101. - Add gcc 3.4 patch
  102. * Fri Mar 12 2004 Bill Nottingham <notting@redhat.com> 0.6.6-1
  103. - split off from gnucash, adapt upstream spec, add -devel package