summaryrefslogtreecommitdiffstats
path: root/main/db/APKBUILD
blob: 00940e41c6c55d0b380111e8a6096861e403727f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
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"