diff options
author | root <root@rshg054.dnsready.net> | 2013-07-19 01:10:32 -0700 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2013-07-19 01:10:32 -0700 |
commit | 8fbc0076a4827ddc6af92e0b9daa4c4c31450808 (patch) | |
tree | 03fd0e2921ebd53228d9a93e32ed3976b636cbea /community/libpqxx | |
parent | e445a313723389ba9ee1fded025c567dae5b21ea (diff) |
Fri Jul 19 01:09:18 PDT 2013
Diffstat (limited to 'community/libpqxx')
-rw-r--r-- | community/libpqxx/ChangeLog | 9 | ||||
-rw-r--r-- | community/libpqxx/PKGBUILD | 24 |
2 files changed, 33 insertions, 0 deletions
diff --git a/community/libpqxx/ChangeLog b/community/libpqxx/ChangeLog new file mode 100644 index 000000000..bf9624d43 --- /dev/null +++ b/community/libpqxx/ChangeLog @@ -0,0 +1,9 @@ + +2009-09-16 Douglas Soares de Andrade <douglas@archlinux.org> + + * Updated to 3.0.2 + +2009-08-06 Douglas Soares de Andrade <douglas@archlinux.org> + + * Updated to 3.0.1 + diff --git a/community/libpqxx/PKGBUILD b/community/libpqxx/PKGBUILD new file mode 100644 index 000000000..00a6dba5d --- /dev/null +++ b/community/libpqxx/PKGBUILD @@ -0,0 +1,24 @@ +# $Id: PKGBUILD 83662 2013-02-04 10:17:35Z spupykin $ +# Contributor: Giovanni Scafora <giovanni@archlinux.org> + +pkgname=libpqxx +pkgver=4.0.1 +pkgrel=1 +pkgdesc="C++ client API for PostgreSQL" +arch=('i686' 'x86_64') +license=('custom') +url="http://pqxx.org/development/libpqxx/" +depends=('postgresql-libs>=8.4.1') +makedepends=('python2') +options=('!libtool') +source=("http://pqxx.org/download/software/${pkgname}/${pkgname}-${pkgver}.tar.gz") +md5sums=('6ea888b9ba85dd7cef1b182dc5f223a2') + +build() { + cd "${srcdir}/${pkgname}-${pkgver}" + sed -i 's|python|python2|' tools/splitconfig + ./configure --prefix=/usr --enable-shared + make + make prefix="${pkgdir}/usr" install + install -D -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" +} |