From 6aba5b511be080ff7a8718c1cbd2def151eb9b9c Mon Sep 17 00:00:00 2001 From: gnastyle Date: Thu, 11 Feb 2016 14:58:43 +0100 Subject: [PATCH] ktoblzcheck: update to 1.48 --- ktoblzcheck/PKGBUILD | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 ktoblzcheck/PKGBUILD diff --git a/ktoblzcheck/PKGBUILD b/ktoblzcheck/PKGBUILD new file mode 100644 index 000000000..4adea24ab --- /dev/null +++ b/ktoblzcheck/PKGBUILD @@ -0,0 +1,23 @@ +# Arch contribution https://www.archlinux.org/packages/community/x86_64/ktoblzcheck/ + +pkgname=ktoblzcheck +pkgver=1.48 +pkgrel=1 +pkgdesc="Tool for verification of account numbers and bank codes" +arch=('x86_64') +license=('LGPL') +url="http://ktoblzcheck.sourceforge.net/" +depends=('python2' 'gcc-libs') +source=("http://downloads.sourceforge.net/project/$pkgname/$pkgname-$pkgver.tar.gz") +sha1sums=('80d1a586e2d581dce62094fed61b9292f2c72c6b') + +build() { + cd $srcdir/$pkgname-$pkgver + ./configure --prefix=/usr + make +} + +package() { + cd "$srcdir/ktoblzcheck-$pkgver" + make DESTDIR="$pkgdir" install +}