summaryrefslogtreecommitdiff
path: root/kde-unstable/libkface/PKGBUILD
blob: 9bdcab86b0f076dfa4c2a9496382781a22f55258 (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
# $Id: PKGBUILD 124682 2011-05-23 20:54:29Z andrea $
# Maintainer: Andrea Scarpino <andrea@archlinux.org>

pkgname=libkface
pkgver=4.6.80
pkgrel=1
pkgdesc="A library to perform face recognition and detection over pictures"
url="http://kde.org/"
arch=('i686' 'x86_64')
license=('GPL' 'LGPL' 'FDL')
depends=('kdelibs' 'opencv')
makedepends=('cmake' 'automoc4')
#install=${pkgname}.install
source=("http://download.kde.org/unstable/${pkgver}/src/${pkgname}-${pkgver}.tar.bz2")
sha1sums=('197b7c26e70c45339745efc839698c3ad276bb65')

build() {
  cd "${srcdir}"
  mkdir build
  cd build
  cmake ../${pkgname}-${pkgver} \
    -DCMAKE_BUILD_TYPE=Release \
    -DCMAKE_INSTALL_PREFIX=/usr
  make
}

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