rev |
line source |
pascal@14169
|
1 # SliTaz package receipt.
|
pascal@14169
|
2
|
pascal@14169
|
3 PACKAGE="libnfc"
|
pascal@14169
|
4 VERSION="1.7.0-rc6"
|
pascal@14169
|
5 CATEGORY="development"
|
pascal@14169
|
6 SHORT_DESC="Near Field Communication (NFC) library."
|
pascal@14169
|
7 MAINTAINER="pascal.bellard@slitaz.org"
|
pascal@14169
|
8 TARBALL="$PACKAGE-$VERSION.tar.gz"
|
pascal@14169
|
9 WEB_SITE="http://nfc-tools.org/index.php?title=Libnfc"
|
pascal@14169
|
10 WGET_URL="http://libnfc.googlecode.com/files/$TARBALL"
|
pascal@14169
|
11
|
pascal@14169
|
12 DEPENDS="libusb pcsc-lite"
|
pascal@14171
|
13 BUILD_DEPENDS="pkg-config libusb-dev libusb-compat pcsc-lite-dev"
|
pascal@14169
|
14
|
pascal@14169
|
15 # Rules to configure and make the package.
|
pascal@14169
|
16 compile_rules()
|
pascal@14169
|
17 {
|
pascal@14169
|
18 cd $src
|
pascal@14169
|
19 ./configure --prefix=/usr \
|
pascal@14169
|
20 --with-drivers=all \
|
pascal@14169
|
21 $CONFIGURE_ARGS &&
|
pascal@14169
|
22 make &&
|
pascal@14169
|
23 make DESTDIR=$DESTDIR install
|
pascal@14169
|
24 }
|
pascal@14169
|
25
|
pascal@14169
|
26 # Rules to gen a SliTaz package suitable for Tazpkg.
|
pascal@14169
|
27 genpkg_rules()
|
pascal@14169
|
28 {
|
pascal@14169
|
29 mkdir -p $fs/usr/lib
|
pascal@14169
|
30 cp -a $install/usr/bin $fs/usr
|
pascal@14169
|
31 cp -a $install/usr/lib/*.so* $fs/usr/lib
|
pascal@14169
|
32 }
|