PKGBUILDs/extra/autopano-sift-c/PKGBUILD
2009-10-09 21:23:22 -05:00

26 lines
767 B
Bash

# $Id: PKGBUILD 44469 2009-07-02 06:51:12Z allan $
# 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=('i686' 'x86_64')
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
}
# vim:set ts=2 sw=2 et: