mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
26 lines
773 B
Bash
26 lines
773 B
Bash
|
# $Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $
|
||
|
# Contributor: Tom Newsom <Jeepster@gmx.co.uk>
|
||
|
|
||
|
pkgname=metakit
|
||
|
pkgver=2.4.9.7
|
||
|
pkgrel=2
|
||
|
pkgdesc="MetaKit is an efficient database library with a small footprint"
|
||
|
arch=(i686 x86_64)
|
||
|
depends=('gcc-libs')
|
||
|
makedepends=('tcl' 'python')
|
||
|
license=('BSD')
|
||
|
options=('!libtool')
|
||
|
source=(http://www.equi4.com/pub/mk/$pkgname-$pkgver.tar.gz)
|
||
|
md5sums=('17330257376eea657827ed632ea62c9e')
|
||
|
url="http://www.equi4.com/metakit/"
|
||
|
|
||
|
build() {
|
||
|
mkdir -p $startdir/pkg/usr/lib/python2.6/site-packages
|
||
|
|
||
|
cd $startdir/src/$pkgname-$pkgver/builds
|
||
|
../unix/configure --prefix=/usr --with-tcl=/usr/include
|
||
|
make || return 1
|
||
|
make DESTDIR=$startdir/pkg install
|
||
|
install -D -m644 ../license.terms $startdir/pkg/usr/share/licenses/$pkgname/LICENSE
|
||
|
}
|