updated on Wed Jan 25 16:08:47 UTC 2012
[aur-mirror.git] / libfreefare / PKGBUILD
blobaefde1924f63e9a006ff60844f1819355c866a54
1 # This is an example PKGBUILD file. Use this as a start to creating your own,
2 # and remove these comments. For more information, see 'man PKGBUILD'.
3 # NOTE: Please fill out the license field for your package! If it is unknown,
4 # then please put 'unknown'.
6 # Maintainer: James Buckley <xanium4332@gmail.com>
7 pkgname=libfreefare
8 pkgver=0.3.2
9 pkgrel=1
10 pkgdesc="Provides a convenient API for MIFARE card manipulations"
11 arch=('i686' 'x86_64')
12 url="http://code.google.com/p/nfc-tools/"
13 license=('LGPL3')
14 depends=('libnfc>=1.5.1')
15 source=(http://nfc-tools.googlecode.com/files/$pkgname-$pkgver.tar.gz)
16 noextract=()
17 md5sums=('88949547cc58f2d30e005ab9bb30b48c')
19 build() {
20   cd "$srcdir/$pkgname-$pkgver"
22   ./configure --prefix=/usr
23   make
26 package() {
27   cd "$srcdir/$pkgname-$pkgver"
29   make DESTDIR="$pkgdir/" install
32 # vim:set ts=2 sw=2 et: