summaryrefslogtreecommitdiffstats
path: root/db/Pkgfile
blob: a1857a5e681dadffdeca6e0df83b56f089daf9e0 (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
description="Berkeley DB."
packager="CRUX System Team <core-ports AT crux DOT nu>"
maintainer="Lukc <lukc AT upyum DOT com>"
url="http://www.oracle.com/database/berkeley-db/index.html"
depends=()

name=db
version=4.8.30
release=1
source=(http://download.oracle.com/berkeley-db/db-4.8.30.tar.gz)
build () 
{ 
	cd $name-$version/build_unix;
	../dist/configure \
		${CHOST:+--build=${CHOST}} \
		${CTARGET:+--host=${CTARGET}} \
		--prefix=$prefix \
		--enable-compat185 \
		--enable-shared \
		--enable-static \
		--enable-cxx;
	make;
	make DESTDIR=$PKG install;
	rm -r $PKG/usr/docs;
	chmod -R +w $PKG
}