# HG changeset patch # User Hans-G?nter Theisgen # Date 1559398740 -3600 # Node ID 3169a7ccbddc6c737b370fb721ca6b791ebaed85 # Parent 2e1dc40b652c9d1595b28430fcb3e14731dff3bd updated pcsc-tools (1.4.20 -> 1.5.4) diff -r 2e1dc40b652c -r 3169a7ccbddc pcsc-tools/receipt --- a/pcsc-tools/receipt Sat Jun 01 14:56:31 2019 +0100 +++ b/pcsc-tools/receipt Sat Jun 01 15:19:00 2019 +0100 @@ -1,13 +1,14 @@ # SliTaz package receipt. PACKAGE="pcsc-tools" -VERSION="1.4.20" +VERSION="1.5.4" CATEGORY="system-tools" SHORT_DESC="PC/SC Architecture smartcard tools." MAINTAINER="pankso@slitaz.org" LICENSE="GPL2" WEB_SITE="http://ludovic.rousseau.free.fr/softwares/pcsc-tools/" -TARBALL="$PACKAGE-$VERSION.tar.gz" + +TARBALL="$PACKAGE-$VERSION.tar.bz2" WGET_URL="http://ludovic.rousseau.free.fr/softwares/$PACKAGE/$TARBALL" DEPENDS="pcsc-lite perl-glib perl-gtk2 perl-pcsc" @@ -16,15 +17,19 @@ # Rules to configure and make the package. compile_rules() { - cd $src - sed -i -e 's:-Wall -O2:${CFLAGS}:g' Makefile - make && make DESTDIR=$DESTDIR/usr install +# sed -i -e 's:-Wall -O2:${CFLAGS}:g' Makefile + ./configure \ + --prefix=/usr \ + $CONFIGURE_ARGS && + make && + make DESTDIR=$DESTDIR install } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { mkdir -p $fs/usr/share - cp -a $install/usr/bin $fs/usr - cp -a $install/usr/share/pcsc $fs/usr/share + + cp -a $install/usr/bin $fs/usr + cp -a $install/usr/share/pcsc $fs/usr/share }