diff options
author | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
---|---|---|
committer | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
commit | 415856bdd4f48ab4f2732996f0bae58595092bbe (patch) | |
tree | ede2018b591f6dfb477fe9341ba17b9bc000fab9 /extra/autopano-sift-c |
Tue Apr 5 14:26:38 UTC 2011
Diffstat (limited to 'extra/autopano-sift-c')
-rw-r--r-- | extra/autopano-sift-c/PKGBUILD | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/extra/autopano-sift-c/PKGBUILD b/extra/autopano-sift-c/PKGBUILD new file mode 100644 index 000000000..35a5d7fdc --- /dev/null +++ b/extra/autopano-sift-c/PKGBUILD @@ -0,0 +1,27 @@ +# $Id: PKGBUILD 96768 2010-10-24 16:49:43Z ibiru $ +# Maintainer: Tobias Kieslich <tobias@archlinux.org> +# Contributor: Giovanni Scafora <giovanni@archlinux.org> +# Contributor: Lukas Jirkovsky <l.jirkovsky@gmail.com> + +pkgname=autopano-sift-c +pkgver=2.5.1 +pkgrel=2 +pkgdesc="Identify key feature points within arbitrary images" +arch=('i686' 'x86_64') +url="http://hugin.sourceforge.net/" +license=('GPL2') +depends=('libxml2' 'libpano13>=2.9.17' '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=('b9bade07e8c4f2ea383c22a082c260e0') + +build() { + cd "${srcdir}/autopano-sift-C-${pkgver}" + + cmake -DCMAKE_INSTALL_PREFIX=/usr . + make + make DESTDIR=${pkgdir} install +} |