diff options
author | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
---|---|---|
committer | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
commit | 415856bdd4f48ab4f2732996f0bae58595092bbe (patch) | |
tree | ede2018b591f6dfb477fe9341ba17b9bc000fab9 /extra/libpano13 |
Tue Apr 5 14:26:38 UTC 2011
Diffstat (limited to 'extra/libpano13')
-rw-r--r-- | extra/libpano13/PKGBUILD | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/extra/libpano13/PKGBUILD b/extra/libpano13/PKGBUILD new file mode 100644 index 000000000..6471753aa --- /dev/null +++ b/extra/libpano13/PKGBUILD @@ -0,0 +1,24 @@ +# $Id: PKGBUILD 96763 2010-10-24 16:48:37Z ibiru $ +# Maintainer: tobias <tobias@archlinux.org> +# Contributor: Tobias Kieslich <tobias@justdreams.de> + +pkgname=libpano13 +pkgver=2.9.17 +pkgrel=1 +pkgdesc="basic library to calculate panoramical pictures - core functions of the panotools" +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') + +build() { + cd $srcdir/$pkgname-$pkgver +# sed -i 's:\(^.*MAX_FISHEYE_FOV.*\)160.*$:\1720.0:' filter.h + ./configure --prefix=/usr --mandir=/usr/share/man --with-java=${JAVA_HOME} + make + make DESTDIR=$pkgdir install +} |