- Update to 0.10.5 * Fix missing include for ptrdiff_t on Homebrew * Fix parallel builds by fixing the man-page build * Remove all "using namespace std" directives * Fix some minor memory leaks * Revert typos fixes OBS-URL: https://build.opensuse.org/request/show/975135 OBS-URL: https://build.opensuse.org/package/show/X11:common:Factory/libofx?expand=0&rev=27
117 lines
3.5 KiB
RPMSpec
117 lines
3.5 KiB
RPMSpec
#
|
|
# spec file for package libofx
|
|
#
|
|
# Copyright (c) 2022 SUSE LLC
|
|
#
|
|
# All modifications and additions to the file contributed by third parties
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
# upon. The license for this file, and modifications and additions to the
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
# license for the pristine package is not an Open Source License, in which
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
# published by the Open Source Initiative.
|
|
|
|
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
Name: libofx
|
|
Version: 0.10.5
|
|
Release: 0
|
|
Summary: OFX Command Parser and API
|
|
License: GPL-2.0-or-later
|
|
Group: Development/Libraries/Other
|
|
URL: https://github.com/libofx/libofx
|
|
Source: https://github.com/libofx/libofx/archive/%{version}.tar.gz#/%{name}-%{version}.tar.gz
|
|
BuildRequires: automake
|
|
BuildRequires: curl-devel
|
|
BuildRequires: dos2unix
|
|
BuildRequires: doxygen
|
|
BuildRequires: fdupes
|
|
BuildRequires: gcc-c++
|
|
BuildRequires: gengetopt
|
|
BuildRequires: graphviz
|
|
BuildRequires: help2man
|
|
BuildRequires: libtool
|
|
BuildRequires: opensp-devel
|
|
BuildRequires: pkgconfig
|
|
BuildRequires: pkgconfig(libxml++-2.6) >= 2.6
|
|
|
|
%description
|
|
LibOFX is a parser and API for applications to support
|
|
OFX command responses, usually provided by financial institutions for
|
|
statement downloads.
|
|
|
|
%package -n libofx7
|
|
Summary: OFX Command Parser and API
|
|
Group: System/Libraries
|
|
Requires: %{name} >= %{version}
|
|
|
|
%description -n libofx7
|
|
LibOFX is a parser and API for applications to support
|
|
OFX command responses, usually provided by financial institutions for
|
|
statement downloads.
|
|
|
|
%package devel
|
|
Summary: Development files for libofx, an OFX Command Parser and API
|
|
Group: Development/Libraries/C and C++
|
|
Requires: %{name} = %{version}
|
|
Requires: glibc-devel
|
|
Requires: libofx7 = %{version}
|
|
|
|
%description devel
|
|
LibOFX is a parser and API for applications to support
|
|
OFX command responses, usually provided by financial institutions for
|
|
statement downloads.
|
|
|
|
This subpackage contains the header files for the C API.
|
|
|
|
%prep
|
|
%setup -q
|
|
chmod -x doc/ofx_sample_files/ofx_spec160_stmtrs_example.sgml
|
|
dos2unix doc/ofx_sample_files/*.ofx
|
|
|
|
%build
|
|
# lto causes build issues on leap and armv7l
|
|
%define _lto_cflags %{nil}
|
|
|
|
sh autogen.sh
|
|
%configure --disable-static --with-opensp-libs=%{_libdir}
|
|
%make_build docdir=%{_defaultdocdir}/%{name}
|
|
|
|
%install
|
|
%make_install
|
|
mkdir -p %{buildroot}%{_defaultdocdir}
|
|
mv %{buildroot}%{_datadir}/doc/libofx %{buildroot}%{_defaultdocdir}/%{name}
|
|
rm %{buildroot}%{_defaultdocdir}/%{name}/INSTALL
|
|
cp -a doc/ofx_sample_files/*.* %{buildroot}%{_defaultdocdir}/%{name}/
|
|
cp -a doc/html %{buildroot}%{_defaultdocdir}/%{name}/
|
|
%fdupes %{buildroot}%{_prefix}
|
|
find %{buildroot} -type f -name "*.la" -delete -print
|
|
|
|
%post -n libofx7 -p /sbin/ldconfig
|
|
%postun -n libofx7 -p /sbin/ldconfig
|
|
|
|
%files
|
|
%doc %dir %{_defaultdocdir}/%{name}
|
|
%doc %{_defaultdocdir}/%{name}/[ACNR]*
|
|
%doc %{_defaultdocdir}/%{name}/*.txt
|
|
%doc %{_defaultdocdir}/%{name}/*.ofx
|
|
%{_bindir}/*
|
|
%{_datadir}/libofx/
|
|
%{_mandir}/man1/*.1%{?ext_man}
|
|
|
|
%files -n libofx7
|
|
%{_libdir}/libofx.so.7*
|
|
|
|
%files devel
|
|
%doc %{_defaultdocdir}/%{name}/html/
|
|
%doc %{_defaultdocdir}/%{name}/*.sgml
|
|
%doc %{_defaultdocdir}/%{name}/*.xml
|
|
%{_libdir}/libofx.so
|
|
%{_includedir}/libofx/
|
|
%{_libdir}/pkgconfig/libofx.pc
|
|
|
|
%changelog
|