blob: b0dc71dfbb9fe64e322adcea86ba435a172fe16b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# Description: Basic library to calculate panoramical pictures - core functions of the panotools
# URL: https://sourceforge.net/projects/panotools/files/libpano13/
# Maintainer: Erich Eckner, crux at eckner dot net
# Depends on: libpng libtiff
name=libpano13
version=2.9.20
release=1
source=("http://downloads.sourceforge.net/sourceforge/panotools/${name}-${version}.tar.gz")
build() {
cd "${SRC}/${name}-${version}"
./configure --prefix=/usr --mandir=/usr/share/man
make
make DESTDIR="${PKG}" install
}
|