core/db/Pkgfile

23 lines
523 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: Per Lid<69>n <per@fukt.bth.se>
name=db
version=4.3.29
release=1
source=(ftp://ftp.sleepycat.com/releases/$name-$version.tar.gz)
build() {
cd $name-$version/build_unix
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
}