PKGBUILDs/extra/autopano-sift-c/PKGBUILD
2009-10-18 22:17:58 -05:00

24 lines
682 B
Bash

# Contributor: Lukas Jirkovsky <l.jirkovsky@gmail.com>
pkgname=autopano-sift-c
pkgver=2.5.0
pkgrel=3
pkgdesc="Identify key feature points within arbitrary images"
arch=('arm')
url="http://hugin.sourceforge.net/"
license=('GPL2')
depends=('libxml2' 'libpano13>=2.9.12-2' 'gcc-libs')
makedepends=('cmake')
provides=('autopano-sift')
conflicts=('autopano-sift')
replaces=('autopano-sift')
source=(http://downloads.sourceforge.net/sourceforge/hugin/autopano-sift-C-${pkgver}.tar.gz)
md5sums=('d4e6bfab53fe227a36eec4c94c0bbfe6')
build() {
cd ${srcdir}/autopano-sift-C-${pkgver}
cmake -DCMAKE_INSTALL_PREFIX=/usr .
make || return 1
make DESTDIR=${pkgdir} install || return 1
}