From 8ee280630362fa579904b5ac0e1996a11c9d4013 Mon Sep 17 00:00:00 2001 From: tnut Date: Tue, 8 Jun 2010 20:40:17 +0200 Subject: ajout de libpostgresql#8.4.4-1 --- extra/libpostgresql/Pkgfile | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 extra/libpostgresql/Pkgfile (limited to 'extra/libpostgresql/Pkgfile') diff --git a/extra/libpostgresql/Pkgfile b/extra/libpostgresql/Pkgfile new file mode 100644 index 000000000..2f871486a --- /dev/null +++ b/extra/libpostgresql/Pkgfile @@ -0,0 +1,35 @@ +# Description: Système de base de données relationnelles très complète basée sur les objects +# URL: http://www.postgresql.org/ +# Maintainer: NuTyX core team +# Packager: lesibel at free dot fr +# Depends on: libxml2, linux-pam + +name=postgresql +version=8.4.4 +release=1 +source=(ftp://ftp.postgresql.org/pub/source/v$version/postgresql-$version.tar.bz2 \ + build.patch postgresql.pam) + +build() { + + cd $name-$version + + # patch to remove regress/test make target (won't build with it present) + patch -Np1 -i ../build.patch + + # configure + ./configure --prefix=/usr --mandir=/usr/share/man \ + --with-docdir=/usr/share/doc --with-openssl \ + --enable-thread-safety \ + --with-pam --with-libxml + + # build + make -j3 + + for i in src/interfaces src/bin/pg_config src/include; do + cd $i + make DESTDIR=$PKG install + cd - + done + +} -- cgit v1.2.3-54-g00ecf