core/libpano13/PKGBUILD
Samir 348d542db8 libpng group: update/rebuild platform
will commit them separately next time... it's just too much work to do separate commits right now
2013-07-27 16:51:03 +00:00

29 lines
756 B
Bash

#
# Platform Packages for Chakra, part of chakra-project.org
#
# maintainer abveritas[at]chakra-project[dot]org>
pkgname=libpano13
pkgver=2.9.18
pkgrel=3
pkgdesc="Basic library to calculate panoramical pictures - core functions of the panotools"
arch=('x86_64')
url="http://panotools.sourceforge.net/"
license=('GPL2')
depends=('libpng' 'libtiff')
makedepends=('openjdk')
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
}
package() {
cd "${srcdir}/${pkgname}-${pkgver}"
make DESTDIR="${pkgdir}" install
}