core/db/Pkgfile

26 lines
698 B
Plaintext
Raw Normal View History

2006-02-23 16:26:10 +01:00
# Description: Berkeley DB
# URL: http://www.sleepycat.com/products/db.shtml
# Maintainer: CRUX System Team, core-ports at crux dot nu
2006-02-23 16:26:10 +01:00
name=db
version=4.4.20
release=2
2006-10-13 16:46:56 +02:00
source=(http://download.oracle.com/berkeley-db/$name-$version.tar.gz \
http://www.oracle.com/technology/products/berkeley-db/db/update/4.4.20/patch.4.4.20.{1,2,3,4})
2006-02-23 16:26:10 +01:00
build() {
2006-02-23 18:25:10 +01:00
cd $name-$version
cat $SRC/patch.4.4.20.{1,2,3,4} | patch -p0
2006-02-23 18:25:10 +01:00
cd build_unix
2006-02-23 16:26:10 +01:00
LDFLAGS="-lpthread" \
../dist/configure --prefix=/usr \
--enable-compat185 \
--enable-shared \
--enable-static \
--enable-cxx
make
make DESTDIR=$PKG install
rm -rf $PKG/usr/docs
chmod -R +w $PKG
}