source: projects/specs/trunk/lib/libo/libofx/libofx-vl.spec @ 521

Revision 521, 2.4 KB checked in by daisuke, 14 years ago (diff)

import VineSeed package specs

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