summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLukc <lukc@upyum.com>2010-12-21 04:49:20 +0100
committerLukc <lukc@upyum.com>2010-12-21 04:49:20 +0100
commit0482ba9203788601d4e4c01dbd883835db23f47e (patch)
tree84caa8960e8afeafcd8682aca9150679354e1258
parent71e65e12beec2ebe03e1796acf5ed400dd0a4da0 (diff)
downloadbase-0482ba9203788601d4e4c01dbd883835db23f47e.tar.gz
base-0482ba9203788601d4e4c01dbd883835db23f47e.tar.bz2
base-0482ba9203788601d4e4c01dbd883835db23f47e.tar.xz
base-0482ba9203788601d4e4c01dbd883835db23f47e.zip
Recette de db mise à jour.
-rw-r--r--db/Pkgfile25
1 files changed, 16 insertions, 9 deletions
diff --git a/db/Pkgfile b/db/Pkgfile
index 0bef5a6..a1857a5 100644
--- a/db/Pkgfile
+++ b/db/Pkgfile
@@ -1,6 +1,6 @@
-description="Berkeley DB"
-packager=""
-maintainer="CRUX System Team, core-ports at crux dot nu"
+description="Berkeley DB."
+packager="CRUX System Team <core-ports AT crux DOT nu>"
+maintainer="Lukc <lukc AT upyum DOT com>"
url="http://www.oracle.com/database/berkeley-db/index.html"
depends=()
@@ -10,10 +10,17 @@ release=1
source=(http://download.oracle.com/berkeley-db/db-4.8.30.tar.gz)
build ()
{
- cd $name-$version/build_unix;
- ../dist/configure --prefix=/usr --enable-compat185 --enable-shared --enable-static --enable-cxx;
- make;
- make DESTDIR=$PKG install;
- rm -r $PKG/usr/docs;
- chmod -R +w $PKG
+ cd $name-$version/build_unix;
+ ../dist/configure \
+ ${CHOST:+--build=${CHOST}} \
+ ${CTARGET:+--host=${CTARGET}} \
+ --prefix=$prefix \
+ --enable-compat185 \
+ --enable-shared \
+ --enable-static \
+ --enable-cxx;
+ make;
+ make DESTDIR=$PKG install;
+ rm -r $PKG/usr/docs;
+ chmod -R +w $PKG
}