mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
21 lines
649 B
Bash
21 lines
649 B
Bash
# $Id: PKGBUILD 50028 2009-08-18 14:54:30Z jgc $
|
|
# Maintainer: Thomas Baechler <thomas@archlinux.org>
|
|
|
|
pkgname=fprint_demo
|
|
pkgver=0.4
|
|
pkgrel=2
|
|
pkgdesc="Simple GTK+ application to demonstrate and test libfprint's capabilities"
|
|
arch=('i686' 'x86_64')
|
|
url="http://reactivated.net/fprint/wiki/Main_Page"
|
|
license=('LGPL')
|
|
groups=('fprint')
|
|
depends=('libfprint')
|
|
source=(http://downloads.sourceforge.net/sourceforge/fprint/${pkgname}-${pkgver}.tar.bz2)
|
|
md5sums=('32e663a938e19801bdd17105d5c4d310')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
./configure --prefix=/usr || return 1
|
|
make || return 1
|
|
make DESTDIR="${pkgdir}" install || return 1
|
|
}
|