# HG changeset patch # User Hans-G?nter Theisgen # Date 1555073434 -3600 # Node ID 3b8898f56b63f52c2332a46ca01e32ad24434529 # Parent 562fee6af57bf841e1c5ded6ae9ec523bf64a63f updated libnfc and libnfc-dev (1.7.0 -> 1.7.1) diff -r 562fee6af57b -r 3b8898f56b63 libnfc-dev/receipt --- a/libnfc-dev/receipt Fri Apr 12 13:34:05 2019 +0100 +++ b/libnfc-dev/receipt Fri Apr 12 13:50:34 2019 +0100 @@ -1,21 +1,22 @@ # SliTaz package receipt. PACKAGE="libnfc-dev" -VERSION="1.7.0" +VERSION="1.7.1" CATEGORY="development" SHORT_DESC="Near Field Communication (NFC) library, development files." MAINTAINER="pascal.bellard@slitaz.org" LICENSE="GPL2" WEB_SITE="http://nfc-tools.org/index.php?title=Libnfc" + WANTED="libnfc" - -DEPENDS="libnfc pcsc-lite-dev libusb-dev pkg-config" +DEPENDS="libnfc libusb-dev pcsc-lite-dev pkg-config" # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { mkdir -p $fs/usr/lib - cp -a $install/usr/include $fs/usr - cp -a $install/usr/lib/*a $fs/usr/lib - cp -a $install/usr/lib/pkgconfig $fs/usr/lib + + cp -a $install/usr/include $fs/usr + cp -a $install/usr/lib/*a $fs/usr/lib + cp -a $install/usr/lib/pkgconfig $fs/usr/lib } diff -r 562fee6af57b -r 3b8898f56b63 libnfc/receipt --- a/libnfc/receipt Fri Apr 12 13:34:05 2019 +0100 +++ b/libnfc/receipt Fri Apr 12 13:50:34 2019 +0100 @@ -1,26 +1,29 @@ # SliTaz package receipt. PACKAGE="libnfc" -VERSION="1.7.0" +VERSION="1.7.1" CATEGORY="development" SHORT_DESC="Near Field Communication (NFC) library." MAINTAINER="pascal.bellard@slitaz.org" LICENSE="LGPL3" +WEB_SITE="http://nfc-tools.org/index.php?title=Libnfc" + TARBALL="$PACKAGE-$VERSION.tar.bz2" -WEB_SITE="http://nfc-tools.org/index.php?title=Libnfc" -WGET_URL="http://libnfc.googlecode.com/files/$TARBALL" +WGET_URL="https://github.com/nfc-tools/$PACKAGE/releases/download/$PACKAGE-$VERSION/$TARBALL" DEPENDS="libusb pcsc-lite" -BUILD_DEPENDS="pkg-config libusb-dev libusb-compat pcsc-lite-dev" +BUILD_DEPENDS="libusb-compat libusb-dev pcsc-lite-dev pkg-config" # Rules to configure and make the package. compile_rules() { export LDFLAGS="$LDFLAGS -ltinfo" - ./configure --prefix=/usr \ - --with-drivers=all \ + + ./configure \ + --prefix=/usr \ + --with-drivers=all \ $CONFIGURE_ARGS && - make && + make -j 1 && make DESTDIR=$DESTDIR install } @@ -28,6 +31,7 @@ genpkg_rules() { mkdir -p $fs/usr/lib - cp -a $install/usr/bin $fs/usr - cp -a $install/usr/lib/*.so* $fs/usr/lib + + cp -a $install/usr/bin $fs/usr + cp -a $install/usr/lib/*.so* $fs/usr/lib }