summaryrefslogtreecommitdiffstats
path: root/db/Pkgfile
blob: 0bef5a68f72b722eecfaa1991e98b5c21cfdfeac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
description="Berkeley DB"
packager=""
maintainer="CRUX System Team, core-ports at crux dot nu"
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 --prefix=/usr --enable-compat185 --enable-shared --enable-static --enable-cxx;
    make;
    make DESTDIR=$PKG install;
    rm -r $PKG/usr/docs;
    chmod -R +w $PKG
}