updated on Thu Jan 19 16:10:29 UTC 2012
[aur-mirror.git] / nfcutils / PKGBUILD
blob86ae702780eb258a2b38c35e8c8f4277d361ce8d
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=nfcutils
8 pkgver=0.3.0
9 pkgrel=1
10 pkgdesc="Provides a simple 'lsnfc' command that list tags which are in your NFC device field"
11 arch=('i686' 'x86_64')
12 url="http://code.google.com/p/nfc-tools"
13 license=('LGPL3')
14 depends=('libnfc>=1.4.0')
15 source=(http://nfc-tools.googlecode.com/files/$pkgname-$pkgver.tar.gz)
16 md5sums=('161d640eb7f8d17762f57f7b27437f33')
18 build() {
19   cd "$srcdir/$pkgname-$pkgver"
21   ./configure --prefix=/usr
22   make
25 package() {
26   cd "$srcdir/$pkgname-$pkgver"
28   make DESTDIR="$pkgdir/" install
31 # vim:set ts=2 sw=2 et: