[ktoblzcheck] initial import

Bill Nottingham notting at fedoraproject.org
Wed Feb 29 19:33:59 UTC 2012


commit c149af8f08fc2c1a9dd09eedfffaf46342b5b05b
Author: Bill Nottingham <notting at redhat.com>
Date:   Wed Feb 29 14:33:23 2012 -0500

    initial import

 .gitignore       |    1 +
 ktoblzcheck.spec |   66 ++++++++++++++++++++++++++++++++++++++++++++++++++++++
 sources          |    1 +
 3 files changed, 68 insertions(+), 0 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index e69de29..39b6607 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+/ktoblzcheck-1.37.tar.gz
diff --git a/ktoblzcheck.spec b/ktoblzcheck.spec
new file mode 100644
index 0000000..0b7973e
--- /dev/null
+++ b/ktoblzcheck.spec
@@ -0,0 +1,66 @@
+Name: ktoblzcheck
+Summary: A library to check account numbers and bank codes of German banks
+Version: 1.37
+Release: 1
+Source: http://download.sourceforge.net/ktoblzcheck/%{name}-%{version}.tar.gz
+Group: System Environment/Libraries
+License: LGPLv2+
+URL: http://ktoblzcheck.sourceforge.net
+
+%description 
+KtoBLZCheck is a library to check account numbers and bank codes of
+German banks. Both a library for other programs as well as a short
+command-line tool is available. It is possible to check pairs of
+account numbers and bank codes (BLZ) of German banks, and to map bank
+codes (BLZ) to the clear-text name and location of the bank.
+
+%package devel
+Summary: Ktoblzcheck developer files
+Group: Development/Libraries
+Requires: %{name}%{?_isa} = %{version}-%{release}
+
+%description devel
+This package contains the development files for the account number
+checking library ktoblzcheck.
+
+%prep
+%setup -q
+
+%build
+%{configure} --disable-python
+sed -i 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' libtool
+sed -i 's|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_DIE|g' libtool
+make
+
+%install
+rm -rf $RPM_BUILD_ROOT
+
+make DESTDIR=$RPM_BUILD_ROOT install
+
+rm -f $RPM_BUILD_ROOT%{_libdir}/*.la
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+%post -p /sbin/ldconfig
+
+%postun -p /sbin/ldconfig
+
+%files
+%defattr(-,root,root,0755)
+%doc README AUTHORS COPYING NEWS ChangeLog
+%{_libdir}/*.so.*
+%{_bindir}/ktoblzcheck
+%{_datadir}/ktoblzcheck/*
+%{_mandir}/man1/ktoblzcheck.1*
+
+%files devel
+%defattr(-,root,root)
+%{_includedir}/iban.h
+%{_includedir}/ktoblzcheck.h
+%{_libdir}/*.so
+%{_libdir}/pkgconfig/ktoblzcheck.pc
+
+%changelog
+* Tue Jan 31 2012 Bill Nottingham <notting at redhat.com> - 1.37-1
+- initial packaging
diff --git a/sources b/sources
index e69de29..7ef1dd2 100644
--- a/sources
+++ b/sources
@@ -0,0 +1 @@
+93b540b5478bfb1b078613cbf1cc2446  ktoblzcheck-1.37.tar.gz


More information about the scm-commits mailing list