diff options
author | Nicolas Reynolds <fauno@kiwwwi.com.ar> | 2011-07-07 02:29:26 -0300 |
---|---|---|
committer | Nicolas Reynolds <fauno@kiwwwi.com.ar> | 2011-07-07 02:29:26 -0300 |
commit | 3357db80ffa8a795fb5cdad0fc726470887706b0 (patch) | |
tree | 461a9d95f958d88aed12f371328b20d87b69323e /community/geos | |
parent | 1921cc4951557545f38946cbed66431f42af26b4 (diff) | |
parent | ff64a82ccedcb1690d2f0140d63432aa49676591 (diff) |
Merge branch 'master' of ssh://vparabola/home/parabola/abslibre-pre-mips64el
Conflicts:
community/perl-file-path-expand/PKGBUILD
community/perl-file-slurp/PKGBUILD
community/perl-getopt-argvfile/PKGBUILD
community/perl-graphics-colornames/PKGBUILD
community/perl-html-tableextract/PKGBUILD
community/perl-xml-regexp/PKGBUILD
community/perlio-eol/PKGBUILD
community/virtualbox/PKGBUILD
community/xemacs/PKGBUILD
core/gawk/PKGBUILD
extra/bogofilter/PKGBUILD
extra/feh/PKGBUILD
extra/gnome-phone-manager/PKGBUILD
extra/redland/PKGBUILD
extra/ruby/PKGBUILD
extra/samba/PKGBUILD
extra/squirrelmail/PKGBUILD
extra/subversion/PKGBUILD
extra/vsftpd/PKGBUILD
extra/xawtv/PKGBUILD
multilib-testing/lib32-mesa/PKGBUILD
multilib/lib32-glib2/PKGBUILD
testing/mesa/PKGBUILD
Diffstat (limited to 'community/geos')
-rw-r--r-- | community/geos/PKGBUILD | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/community/geos/PKGBUILD b/community/geos/PKGBUILD index 9272b89eb..876062876 100644 --- a/community/geos/PKGBUILD +++ b/community/geos/PKGBUILD @@ -1,10 +1,10 @@ -# $Id: PKGBUILD 32533 2010-11-14 16:11:41Z jlichtblau $ +# $Id: PKGBUILD 50911 2011-07-02 23:00:14Z stephane $ # Maintainer: Jaroslav Lichtblau <dragonlord@aur.archlinux.org> # Contributor: dibblethewrecker dibblethewrecker.at.jiwe.dot.org # Contributor: William Rea <sillywilly@gmail.com> pkgname=geos -pkgver=3.2.2 +pkgver=3.3.0 pkgrel=1 pkgdesc="A C++ port of the Java Topology Suite" arch=('i686' 'x86_64' 'mips64el') @@ -14,17 +14,17 @@ depends=('gcc-libs') options=('!libtool') changelog=$pkgname.changelog source=(http://download.osgeo.org/${pkgname}/${pkgname}-${pkgver}.tar.bz2) -md5sums=('c5d264acac22fe7720f85dadc1fc17c6') +md5sums=('3301f3d1d747b95749384b8a356b022a') build() { - cd ${srcdir}/${pkgname}-${pkgver} + cd "${srcdir}/${pkgname}-${pkgver}" ./configure --prefix=/usr make } package() { - cd ${srcdir}/${pkgname}-${pkgver} + cd "${srcdir}/${pkgname}-${pkgver}" - make DESTDIR=${pkgdir} install + make DESTDIR="${pkgdir}" install } |