core/autopano-sift-c/PKGBUILD

32 lines
806 B
Bash
Raw Normal View History

2011-07-31 16:37:45 +08:00
#
# Platform Packages for Chakra, part of chakra-project.org
#
# maintainer abveritas[at]chakra-project[dot]org>
2011-07-31 16:37:45 +08:00
pkgname=autopano-sift-c
pkgver=2.5.1
pkgrel=3
2011-07-31 16:37:45 +08:00
pkgdesc="Identify key feature points within arbitrary images"
arch=('x86_64')
2011-07-31 16:37:45 +08:00
url="http://hugin.sourceforge.net/"
license=('GPL2')
depends=('libxml2' 'libpano13>=2.9.17' 'gcc-libs')
makedepends=('cmake')
source=("http://sourceforge.net/projects/hugin/files/autopano-sift-C/autopano-sift-C-2.5.1/autopano-sift-C-${pkgver}.tar.gz")
2011-07-31 16:37:45 +08:00
md5sums=('b9bade07e8c4f2ea383c22a082c260e0')
build() {
cd "${srcdir}/autopano-sift-C-${pkgver}"
cmake -DCMAKE_INSTALL_PREFIX=/usr .
sed -i 's/-lz/-lz -lm/' CMakeFiles/{autopano,generatekeys}.dir/link.txt
2011-07-31 16:37:45 +08:00
make
}
package() {
cd "${srcdir}/autopano-sift-C-${pkgver}"
2011-07-31 16:37:45 +08:00
make DESTDIR=${pkgdir} install
}