diff options
Diffstat (limited to 'db/Pkgfile')
-rwxr-xr-x | db/Pkgfile | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/db/Pkgfile b/db/Pkgfile new file mode 100755 index 000000000..015b0a2cb --- /dev/null +++ b/db/Pkgfile @@ -0,0 +1,25 @@ +# Description: La base de données de Berkeley DB +# URL: http://www.sleepycat.com/products/db.shtml +# Maintainer: NuTyX core team +# Packager: thierryn1 at hispeed dot ch + +name=db +version=4.8.30 +release=1 +source=(http://download.oracle.com/berkeley-db/$name-$version.tar.gz) + +build() { + cd $name-$version + cd build_unix + ../dist/configure --prefix=/usr \ + --enable-compat185 \ + --enable-shared \ + --enable-cxx + make LIBSO_LIBS=-lpthread + make DESTDIR=$PKG install + rm -rf $PKG/usr/docs + chmod -R +w $PKG + if [ -f $PKG/usr/share/info/dir ]; then + rm $PKG/usr/share/info/dir + fi +} |