diff options
Diffstat (limited to 'extra/libpano13/PKGBUILD')
-rw-r--r-- | extra/libpano13/PKGBUILD | 27 |
1 files changed, 14 insertions, 13 deletions
diff --git a/extra/libpano13/PKGBUILD b/extra/libpano13/PKGBUILD index a2e8e594b..e40504be1 100644 --- a/extra/libpano13/PKGBUILD +++ b/extra/libpano13/PKGBUILD @@ -1,27 +1,28 @@ -# $Id: PKGBUILD 148830 2012-02-05 11:52:01Z ibiru $ -# Maintainer: tobias <tobias@archlinux.org> +# $Id: PKGBUILD 184405 2013-05-06 19:38:25Z foutrelis $ +# Maintainer: Gaetan Bisson <bisson@archlinux.org> # Contributor: Tobias Kieslich <tobias@justdreams.de> pkgname=libpano13 pkgver=2.9.18 -pkgrel=2 -pkgdesc="Basic library to calculate panoramical pictures - core functions of the panotools" +pkgrel=3 +pkgdesc='Basic library to calculate panoramical pictures - core functions of the panotools' +url='http://panotools.sourceforge.net/' arch=('i686' 'x86_64') -url="http://panotools.sourceforge.net/" license=('GPL2') depends=('libpng' 'libtiff') -makedepends=('openjdk6') +makedepends=('jdk7-openjdk') +source=("http://downloads.sourceforge.net/sourceforge/panotools/${pkgname}-${pkgver}.tar.gz") +sha1sums=('23849bdbdfc9176a2b53d157e58bd24aa0e7276e') + options=('!libtool') -source=(http://downloads.sourceforge.net/sourceforge/panotools/${pkgname}-${pkgver}.tar.gz) -md5sums=('9c3a4fce8b6f1d79e395896ce5d8776e') build() { - cd "${srcdir}/${pkgname}-${pkgver}" - ./configure --prefix=/usr --mandir=/usr/share/man --with-java=${JAVA_HOME} - make + cd "${srcdir}/${pkgname}-${pkgver}" + ./configure --prefix=/usr --mandir=/usr/share/man --with-java=${JAVA_HOME} + make } package() { - cd "${srcdir}/${pkgname}-${pkgver}" - make DESTDIR="${pkgdir}" install + cd "${srcdir}/${pkgname}-${pkgver}" + make DESTDIR="${pkgdir}" install } |