blob: fc25736b91e2fe10c30a531fe2bd436a54096429 (
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
|
# 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.7.25
release=2
source=(http://download.oracle.com/berkeley-db/$name-$version.tar.gz \
http://www.oracle.com/technology/products/berkeley-db/db/update/$version/patch.$version.{1,2,3,4})
build() {
cd $name-$version
cat $SRC/patch.$version.{1,2,3,4} | patch -p0
cd build_unix
../dist/configure --prefix=/usr \
--enable-compat185 \
--enable-cxx
make
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
}
|