2011-07-31 16:37:45 +08:00
|
|
|
#
|
2015-01-07 07:15:14 +08:00
|
|
|
# Platform Packages for Chakra, part of chakraos.org
|
2011-07-31 16:37:45 +08:00
|
|
|
#
|
2015-01-07 07:15:14 +08:00
|
|
|
# maintainer AlmAck
|
2011-07-09 06:12:39 +08:00
|
|
|
|
|
|
|
pkgname=libpano13
|
2015-01-07 07:15:14 +08:00
|
|
|
pkgver=2.9.19
|
|
|
|
pkgrel=1
|
2011-07-09 06:12:39 +08:00
|
|
|
pkgdesc="Basic library to calculate panoramical pictures - core functions of the panotools"
|
2012-11-01 11:15:39 +08:00
|
|
|
arch=('x86_64')
|
2011-07-09 06:12:39 +08:00
|
|
|
url="http://panotools.sourceforge.net/"
|
|
|
|
license=('GPL2')
|
|
|
|
depends=('libpng' 'libtiff')
|
2012-11-01 11:15:39 +08:00
|
|
|
makedepends=('openjdk')
|
|
|
|
source=("http://downloads.sourceforge.net/sourceforge/panotools/${pkgname}-${pkgver}.tar.gz")
|
2015-01-07 07:15:14 +08:00
|
|
|
md5sums=('1e4ce42f58a3f22c0a97d0b7a8e1dbb0')
|
2011-07-09 06:12:39 +08:00
|
|
|
|
|
|
|
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
|
|
|
|
}
|