diff options
Diffstat (limited to 'main/db/APKBUILD')
-rw-r--r-- | main/db/APKBUILD | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/main/db/APKBUILD b/main/db/APKBUILD new file mode 100644 index 000000000..00940e41c --- /dev/null +++ b/main/db/APKBUILD @@ -0,0 +1,49 @@ +# Maintainer: Natanael Copa <ncopa@alpinelinux.org> +pkgname=db +pkgver=4.7.25.4 +_ver=${pkgver%.*} +pkgrel=0 +pkgdesc="The Berkeley DB embedded database system 4.7" +url="http://www.oracle.com/technology/software/products/berkeley-db/index.html" +license="custom" +depends= +makedepends= +subpackages="$pkgname-dev $pkgname-doc" +# Patches were found here: +# http://www.oracle.com/technology/products/berkeley-db/db/update/4.7.25/patch.4.7.25.html +source="http://download-uk.oracle.com/berkeley-db/db-$_ver.tar.gz + patch.$_ver.1 + patch.$_ver.2 + patch.$_ver.3 + patch.$_ver.4 + " + +build () { + cd "$srcdir"/db-$_ver + for i in ../patch.*; do + msg "Applying $i..." + patch -p0 < $i || return 1 + done + + cd build_unix + ../dist/configure --prefix=/usr \ + --mandir=/usr/share/man \ + --enable-compat185 \ + --enable-shared \ + --disable-static \ + --disable-cxx + make LIBSO_LIBS=-lpthread || return 1 + make DESTDIR="$pkgdir" install + + mkdir -p "$pkgdir"/usr/share/doc + mv "$pkgdir"/usr/docs "$pkgdir"/usr/share/doc/$pkgname + + install -D -m644 "$srcdir"/db-$_ver/LICENSE \ + "$pkgdir"/usr/share/licenses/$pkgname/LICENSE +} + +md5sums="ec2b87e833779681a0c3a814aa71359e db-4.7.25.tar.gz +5fdf101259e5164dea1c8c86214fde38 patch.4.7.25.1 +bd410a11c71fee52fddb6aa2d8d4f80c patch.4.7.25.2 +6fcd69f64f5b34bfe8f0a63cc2e402c1 patch.4.7.25.3 +42c5d1a727e4a7f59b9dce12ff2f6b84 patch.4.7.25.4" |