diff options
Diffstat (limited to 'community/metakit')
-rw-r--r-- | community/metakit/PKGBUILD | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/community/metakit/PKGBUILD b/community/metakit/PKGBUILD new file mode 100644 index 000000000..b190002c4 --- /dev/null +++ b/community/metakit/PKGBUILD @@ -0,0 +1,38 @@ +# $Id: PKGBUILD 27187 2010-09-18 15:58:45Z schuay $ +# Contributor: Tom Newsom <Jeepster@gmx.co.uk> + +pkgname=metakit +pkgver=2.4.9.7 +pkgrel=4 +pkgdesc='MetaKit is an efficient database library with a small footprint' +arch=('i686' 'x86_64') +url='http://www.equi4.com/metakit/' +makedepends=('tcl' 'python2') +license=('BSD') +options=('!libtool') +source=("http://www.equi4.com/pub/mk/${pkgname}-${pkgver}.tar.gz") +md5sums=('17330257376eea657827ed632ea62c9e') + +build() { + cd ${pkgname}-${pkgver}/builds + + sed -i 's_"${prefix}/include/python2.5"_"${prefix}/include/python2.7"_' ../unix/configure + sed -i 's_"${prefix}/lib/python2.5/site-packages"_"${prefix}/lib/python2.7/site-packages"_' ../unix/configure + + ../unix/configure \ + --prefix=/usr \ + --with-python \ + --with-tcl=/usr/include + + make +} + +package() { + cd ${pkgname}-${pkgver}/builds + + mkdir -p ${pkgdir}/usr/lib/python2.7/site-packages + + make DESTDIR=${pkgdir} install + + install -D -m644 ../license.terms ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE +} |