mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
22 lines
674 B
Bash
22 lines
674 B
Bash
# $Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $
|
|
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
|
|
# Contributor: Philipp Sandhaus <philipp.sandhaus@gmx.de>
|
|
|
|
pkgname=ktoblzcheck
|
|
pkgver=1.21
|
|
pkgrel=1
|
|
pkgdesc="A library to check account numbers and bank codes of German banks"
|
|
arch=(i686 x86_64)
|
|
url="http://ktoblzcheck.sourceforge.net"
|
|
options=('!libtool')
|
|
license=("LGPL")
|
|
depends=('gcc-libs')
|
|
source=(http://downloads.sourceforge.net/sourceforge/ktoblzcheck/ktoblzcheck-$pkgver.tar.gz)
|
|
md5sums=('6b72e62cd6ae798d91f3d700d7dc94ee')
|
|
|
|
build() {
|
|
cd $startdir/src/ktoblzcheck-$pkgver
|
|
./configure --prefix=/usr
|
|
make || return 1
|
|
make DESTDIR=$startdir/pkg install
|
|
}
|