summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 6091ca6f2e190db8b18400feea6197bcbf778b7e (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
32
33
34
# Contributor: Chee Sing Lee <cslee (funny 'a' symbol) eia.udg.edu>
# Maintainer: Sean Greenslade <aur AT seangreenslade.com>
pkgname=cvblob
pkgver=0.10.4
pkgrel=3
pkgdesc="A computer vision library to detect connected regions in binary digital images."
arch=('i686' 'x86_64')
url="https://github.com/harshjv/cvblob"
license=('LGPL')
groups=()
depends=('opencv')
makedepends=('cmake>=2.0.0')
optdepends=()
provides=(cvblob)
conflicts=()
replaces=()
backup=()
options=()
install=
changelog=
source=('git+https://github.com/harshjv/cvblob#tag=0.10.4')
noextract=()
sha256sums=('SKIP')

build() {
  cd "$srcdir/$pkgname"
  cmake -DCMAKE_INSTALL_PREFIX="/usr" .
  make
}

package() {
  cd "$srcdir/$pkgname"
  make DESTDIR="$pkgdir/" install
}