diff options
author | Cecil Hugh Watson <knoppmyth@gmail.com> | 2008-11-30 04:11:03 (GMT) |
---|---|---|
committer | Cecil Hugh Watson <knoppmyth@gmail.com> | 2008-11-30 04:11:03 (GMT) |
commit | f78fc8e0364cb99bf0b3c2fc941ba85c2fe5944f (patch) | |
tree | 35b4ab3030640a144537124112e3d65d138672f5 /abs/extra-testing/postgresql-libs/PKGBUILD | |
parent | fba7ea15ad46f8655bf17ab4c1cc5a8228d39e1b (diff) | |
parent | f0da28db238a7c58552446e2d87bae48a0f9718b (diff) | |
download | linhes_pkgbuild-f78fc8e0364cb99bf0b3c2fc941ba85c2fe5944f.zip linhes_pkgbuild-f78fc8e0364cb99bf0b3c2fc941ba85c2fe5944f.tar.gz linhes_pkgbuild-f78fc8e0364cb99bf0b3c2fc941ba85c2fe5944f.tar.bz2 |
Merge branch 'HEAD' of ssh://cesman@knoppmyth.net/mount/repository/LinHES-PKGBUILD
Diffstat (limited to 'abs/extra-testing/postgresql-libs/PKGBUILD')
-rw-r--r-- | abs/extra-testing/postgresql-libs/PKGBUILD | 58 |
1 files changed, 58 insertions, 0 deletions
diff --git a/abs/extra-testing/postgresql-libs/PKGBUILD b/abs/extra-testing/postgresql-libs/PKGBUILD new file mode 100644 index 0000000..50ba785 --- /dev/null +++ b/abs/extra-testing/postgresql-libs/PKGBUILD @@ -0,0 +1,58 @@ +# $Id: PKGBUILD 18408 2008-11-04 22:14:34Z douglas $ +# Maintainer: Paul Mattal <paul@archlinux.org> + +pkgname=postgresql-libs +pkgver=8.3.5 +pkgrel=1 +pkgdesc="Libraries for use with PostgreSQL" +arch=(i686 x86_64) +license=('BSD') +url="http://www.postgresql.org/" +depends=('openssl>=0.9.8b' 'zlib' 'readline') +options=('!makeflags') +source=(ftp://ftp.postgresql.org/pub/source/v${pkgver}/postgresql-${pkgver}.tar.bz2) + +build() { + cd $startdir/src/postgresql-$pkgver || return 1 + + # configure + ./configure --prefix=/usr --with-openssl --datadir=/usr/share/postgresql \ + --with-pam \ + || return 1 + + # make and install + for dir in src/interfaces src/bin/pg_config; do + pushd ${dir} || return 1 + make || return 1 + make DESTDIR=${startdir}/pkg install || return 1 + popd + done + + cd src/include || return 1 + make || return 1 + + set -e + mkdir -p $startdir/pkg/usr/include/postgresql/{internal,internal/libpq} \ + || return 1 + mkdir -p $startdir/pkg/usr/include/libpq || return 1 + + # These headers are needed by the public headers of the interfaces. + install -m644 pg_config.h $startdir/pkg/usr/include/ || return 1 + install -m644 pg_config_os.h $startdir/pkg/usr/include/ || return 1 + install -m644 postgres_ext.h $startdir/pkg/usr/include/ || return 1 + install -m644 libpq/libpq-fs.h $startdir/pkg/usr/include/libpq/ || return 1 + install -m644 pg_config_manual.h $startdir/pkg/usr/include/ || return 1 + + # These headers are needed by the not-so-public headers of the interfaces. + install -m644 c.h $startdir/pkg/usr/include/postgresql/internal/ || return 1 + install -m644 port.h $startdir/pkg/usr/include/postgresql/internal/ \ + || return 1 + install -m644 postgres_fe.h $startdir/pkg/usr/include/postgresql/internal/ \ + || return 1 + install -m644 libpq/pqcomm.h $startdir/pkg/usr/include/postgresql/internal/libpq/ || return 1 + + install -D -m644 ../../COPYRIGHT $startdir/pkg/usr/share/licenses/$pkgname/LICENSE || return 1 + + set +e +} +md5sums=('3bc028774d7a79e926be0c6a9c7ca209') |