summaryrefslogtreecommitdiff
path: root/extra/autopano-sift-c/PKGBUILD
blob: f3708cb4a8ac4420e5cb56fc06b6dc1cbaf7de64 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# $Id: PKGBUILD 148678 2012-02-05 11:46:36Z 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=3
pkgdesc="Identify key feature points within arbitrary images"
arch=('i686' 'x86_64')
url="http://hugin.sourceforge.net/"
license=('GPL2')
depends=('libxml2' 'libpano13' '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 .
  sed -i 's/-lz/-lz -lm/' CMakeFiles/{autopano,generatekeys}.dir/link.txt
  make
}

package() {
  cd "${srcdir}/autopano-sift-C-${pkgver}"
  make DESTDIR="${pkgdir}" install
}