blob: adce3ad74f71a9b5ce2de19c2a6dd19f67235667 (
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.19
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
}
|