blob: 015b0a2cb54cefe7175a260cd7af4023d32086c4 (
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
|
# 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
}
|