blob: c9dbce44cbe5b5ee1ed26796f5780fae4bf4872e (
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
26
27
|
# 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=5.3.15
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-static \
--enable-shared \
--enable-cxx \
--enable-dbm
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
}
|