diff options
Diffstat (limited to 'community-staging/pgadmin3')
-rw-r--r-- | community-staging/pgadmin3/ChangeLog | 28 | ||||
-rw-r--r-- | community-staging/pgadmin3/PKGBUILD | 43 | ||||
-rw-r--r-- | community-staging/pgadmin3/pgadmin3.desktop | 10 |
3 files changed, 81 insertions, 0 deletions
diff --git a/community-staging/pgadmin3/ChangeLog b/community-staging/pgadmin3/ChangeLog new file mode 100644 index 000000000..76de01d7d --- /dev/null +++ b/community-staging/pgadmin3/ChangeLog @@ -0,0 +1,28 @@ +2008-08-21 Douglas Soares de Andrade <douglas@archlinux.org> + + * Updated for i686: 1.8.5 + +2008-06-24 Douglas Soares de Andrade <dsa@aur.archlinux.org> + + * Updated for i686 - 1.8.4 + +2008-02-21 Douglas Soares de Andrade <dsa@aur.archlinux.org> + + * Updated for i686 - 1.8.2 + +2008-01-05 Douglas Soares de Andrade <dsa@aur.archlinux.org> + + * Updated for x86_64 - 1.8.1 + * Updated for i686 - 1.8.1 + +2007-10-28 Douglas Soares de Andrade <dsa@aur.archlinux.org> + + * Updated version + +2007-10-11 Douglas Soares de Andrade <dsa@aur.archlinux.org> + + * Updated version + +2007-06-28 tardo <tardo@nagi-fanboi.net> + + * Built for x86_64 diff --git a/community-staging/pgadmin3/PKGBUILD b/community-staging/pgadmin3/PKGBUILD new file mode 100644 index 000000000..e9da012df --- /dev/null +++ b/community-staging/pgadmin3/PKGBUILD @@ -0,0 +1,43 @@ +# $Id: PKGBUILD 45809 2011-04-29 11:11:02Z spupykin $ +# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> +# Maintainer: Douglas Soares de Andrade <dsa@aur.archlinux.org> +# Contributor: Benjamin Andresen <benny@klapmuetz.org> +# Contributor: bekks <eduard.warkentin@gmx.de> + +pkgname=pgadmin3 +pkgver=1.12.2 +_realver=1.12.2 +pkgrel=2 +pkgdesc="A comprehensive design and management interface for PostgreSQL database" +arch=('i686' 'x86_64') +url="http://www.pgadmin.org" +license=('custom') +depends=('wxgtk' 'postgresql-libs>=8.4.1' 'libxslt') +makedepends=('libpqxx' 'krb5') +source=(ftp://ftp.de.postgresql.org/pub/packages/databases/PostgreSQL/pgadmin3/release/v${_realver}/src/pgadmin3-${_realver}.tar.gz + pgadmin3.desktop) +md5sums=('5b0e7b0867c42a529ce2a41bc7f830c8' + 'd07ba4df54baead30b66d19d7450bcad') + +build() { + cd $srcdir/pgadmin3-${_realver} + + unset LDFLAGS + + [ $NOEXTRACT -eq 1 ] || ./configure --prefix=/usr + make +} + +package() { + cd $srcdir/pgadmin3-${_realver} + make DESTDIR=$pkgdir/ install + + install -D -m 644 i18n/$pkgname.lng $pkgdir/usr/share/pgadmin3/i18n + install -D -m 644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE + + mkdir -p $pkgdir/usr/share/pgadmin3/pixmaps/ + mkdir -p $pkgdir/usr/share/applications/ + + install -D -m 644 pgadmin/include/images/pgAdmin3.ico $pkgdir/usr/share/pgadmin3/pixmaps/pgAdmin3.ico + install -D -m 644 $srcdir/pgadmin3.desktop $pkgdir/usr/share/applications/ +} diff --git a/community-staging/pgadmin3/pgadmin3.desktop b/community-staging/pgadmin3/pgadmin3.desktop new file mode 100644 index 000000000..2e0864f60 --- /dev/null +++ b/community-staging/pgadmin3/pgadmin3.desktop @@ -0,0 +1,10 @@ +[Desktop Entry] +Encoding=UTF-8 +Name=pgadmin3 +Comment=A comprehensive design and management interface for PostgreSQL database +Exec=pgadmin3 +Terminal=false +Type=Application +StartupNotify=true +Icon=/usr/share/pgadmin3/pixmaps/pgAdmin3.ico +Categories=Application;Development; |