summaryrefslogtreecommitdiffstats
path: root/libpostgresql/Pkgfile
diff options
context:
space:
mode:
authorpiernov <piernov@piernov.org>2012-05-13 21:42:29 +0200
committerpiernov <piernov@piernov.org>2012-05-13 21:42:29 +0200
commit96bd350217f651e61afd0a838e9511521dc92425 (patch)
tree1aeaf3efad0def0178137896914c3c8c6b48da48 /libpostgresql/Pkgfile
parent11c0acbff935e2989a5051ef8b8cf4e70e46a6b8 (diff)
downloadnutyx-pakxe-96bd350217f651e61afd0a838e9511521dc92425.tar.gz
nutyx-pakxe-96bd350217f651e61afd0a838e9511521dc92425.tar.bz2
nutyx-pakxe-96bd350217f651e61afd0a838e9511521dc92425.tar.xz
nutyx-pakxe-96bd350217f651e61afd0a838e9511521dc92425.zip
Revert "postgresql est un service"
This reverts commit 1a891b97f3fd49ef9113db67f7d6be17671a4db9.
Diffstat (limited to 'libpostgresql/Pkgfile')
-rw-r--r--libpostgresql/Pkgfile37
1 files changed, 0 insertions, 37 deletions
diff --git a/libpostgresql/Pkgfile b/libpostgresql/Pkgfile
deleted file mode 100644
index 13cf0efdd..000000000
--- a/libpostgresql/Pkgfile
+++ /dev/null
@@ -1,37 +0,0 @@
-# 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
-# Run on: libxml2,linux-pam
-
-name=libpostgresql
-version=9.0.3
-release=2
-source=(ftp://ftp.postgresql.org/pub/source/v$version/postgresql-$version.tar.bz2 \
- build.patch postgresql.pam)
-
-build() {
-
- cd postgresql-$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
-
- for i in src/interfaces src/bin/pg_config src/include; do
- cd $i
- make DESTDIR=$PKG install
- cd -
- done
-
-}
-