Date: Saturday, June 4, 2011 @ 20:52:37 Author: eric Revision: 126350
upgpkg: libpano13 2.9.18-1 Upstream update, Capitalize description Modified: libpano13/trunk/PKGBUILD ----------+ PKGBUILD | 19 +++++++++++-------- 1 file changed, 11 insertions(+), 8 deletions(-) Modified: PKGBUILD =================================================================== --- PKGBUILD 2011-06-04 23:56:13 UTC (rev 126349) +++ PKGBUILD 2011-06-05 00:52:37 UTC (rev 126350) @@ -3,22 +3,25 @@ # Contributor: Tobias Kieslich <[email protected]> pkgname=libpano13 -pkgver=2.9.17 +pkgver=2.9.18 pkgrel=1 -pkgdesc="basic library to calculate panoramical pictures - core functions of the panotools" +pkgdesc="Basic library to calculate panoramical pictures - core functions of the panotools" +arch=('i686' 'x86_64') url="http://panotools.sourceforge.net/" -arch=('i686' 'x86_64') license=('GPL2') depends=('libpng' 'libtiff') makedepends=('openjdk6') options=('!libtool') -source=(http://downloads.sourceforge.net/sourceforge/panotools/$pkgname-$pkgver.tar.gz) -md5sums=('54ec7c505cf38521f2fbb6e2acd2c433') +source=(http://downloads.sourceforge.net/sourceforge/panotools/${pkgname}-${pkgver}.tar.gz) +md5sums=('9c3a4fce8b6f1d79e395896ce5d8776e') build() { - cd $srcdir/$pkgname-$pkgver -# sed -i 's:\(^.*MAX_FISHEYE_FOV.*\)160.*$:\1720.0:' filter.h + cd "${srcdir}/${pkgname}-${pkgver}" ./configure --prefix=/usr --mandir=/usr/share/man --with-java=${JAVA_HOME} make - make DESTDIR=$pkgdir install } + +package() { + cd "${srcdir}/${pkgname}-${pkgver}" + make DESTDIR="${pkgdir}" install +}
