diff options
Diffstat (limited to 'abs/core/db')
-rw-r--r-- | abs/core/db/PKGBUILD | 27 | ||||
-rw-r--r-- | abs/core/db/db.install | 29 |
2 files changed, 56 insertions, 0 deletions
diff --git a/abs/core/db/PKGBUILD b/abs/core/db/PKGBUILD new file mode 100644 index 0000000..e41aeac --- /dev/null +++ b/abs/core/db/PKGBUILD @@ -0,0 +1,27 @@ +# $Id: PKGBUILD 3741 2008-06-30 20:07:01Z andyrtr $ +# Maintainer: Andreas Radke <andyrtr@archlinux.org> + +pkgname=db +pkgver=4.7.25 +pkgrel=10 +pkgdesc="The Berkeley DB embedded database system" +arch=(i686 x86_64) +license=('custom') +url="http://www.oracle.com/technology/software/products/berkeley-db/index.html" +groups=('base') +depends=('gcc-libs' 'coreutils') +options=('!libtool') +source=(http://download-uk.oracle.com/berkeley-db/db-$pkgver.tar.gz) +install=(db.install) +md5sums=('ec2b87e833779681a0c3a814aa71359e') + +build() { + cd ${srcdir}/$pkgname-$pkgver/build_unix + ../dist/configure --prefix=/usr --enable-compat185 \ + --enable-shared --enable-static --enable-cxx + make LIBSO_LIBS=-lpthread || return 1 + make DESTDIR=${pkgdir} install + rm -rf ${pkgdir}/usr/docs + mkdir -p ${pkgdir}/usr/share/licenses/${pkgname} + install -m644 ${srcdir}/${pkgname}-${pkgver}/LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE +} diff --git a/abs/core/db/db.install b/abs/core/db/db.install new file mode 100644 index 0000000..7c97ea0 --- /dev/null +++ b/abs/core/db/db.install @@ -0,0 +1,29 @@ +# This is a default template for a post-install scriptlet. You can +# remove any functions you don't need (and this header). + +# arg 1: the new package version +# arg 2: the old package version +pre_upgrade() { + /bin/true +} + +# arg 1: the new package version +# arg 2: the old package version +post_upgrade() { + echo "ATTENTION DB PACKAGE:" + echo "Please consider to run db_upgrade on Berkeley DB databases with a major db version number update." +} + +# arg 1: the old package version +pre_remove() { + /bin/true +} + +# arg 1: the old package version +post_remove() { + /bin/true +} + +op=$1 +shift +$op $*
\ No newline at end of file |