diff options
author | LukenShiro <lukenshiro@ngi.it> | 2010-05-13 00:41:20 +0200 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-13 00:41:20 +0200 |
commit | 40407628323b0b3b8b004790e7ab86daee848424 (patch) | |
tree | 13e968d86e2461baeab6d95518d9cf0f77a12090 /system/pcsc-lite/pcsc-lite.SlackBuild | |
parent | 16a55398931d5d9ac6263b91d7cd2bde2ee21288 (diff) | |
download | slackbuilds-40407628323b0b3b8b004790e7ab86daee848424.tar.gz |
system/pcsc-lite: Updated for version 1.5.5
Diffstat (limited to 'system/pcsc-lite/pcsc-lite.SlackBuild')
-rw-r--r-- | system/pcsc-lite/pcsc-lite.SlackBuild | 26 |
1 files changed, 18 insertions, 8 deletions
diff --git a/system/pcsc-lite/pcsc-lite.SlackBuild b/system/pcsc-lite/pcsc-lite.SlackBuild index 681b74800f..304d185cc1 100644 --- a/system/pcsc-lite/pcsc-lite.SlackBuild +++ b/system/pcsc-lite/pcsc-lite.SlackBuild @@ -23,7 +23,7 @@ # ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. PRGNAM=pcsc-lite -VERSION=${VERSION:-1.5.3} +VERSION=${VERSION:-1.5.5} ARCH=${ARCH:-i486} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} @@ -33,11 +33,19 @@ TMP=${TMP:-/tmp/SBo} PKG=$TMP/package-$PRGNAM OUTPUT=${OUTPUT:-/tmp} -DEBUGATR=${DEBUGATR:-0} # Debug is off by default -APIDOC=${APIDOC:-0} # API documentation building is off by default -TEXTOPDFBIN="/usr/share/texmf/bin/pdflatex" # program to convert .tex files into .pdf (for APIDOC) +# Debug is off by default +DEBUGATR=${DEBUGATR:-0} + +# API documentation building is off by default +APIDOC=${APIDOC:-0} + +# Program to convert .tex files into .pdf (for APIDOC) +TEXTOPDFBIN="/usr/share/texmf/bin/pdflatex" + # using upstream preferred behaviour by default (libhal) -HALD=${HALD:-0} # 0 for conservative detection behaviour, 1 for libhal +# 0 for conservative detection behaviour, 1 for libhal +HALD=${HALD:-0} + # README and README.DAEMON are not useful and partly outdated. ChangeLog.svn is empty. DOCFILES="DRIVERS SECURITY ChangeLog COPYING HELP NEWS TODO AUTHORS INSTALL" @@ -119,8 +127,10 @@ mv $PKG/etc/reader.conf.d/reader.conf $PKG/etc/reader.conf.d/reader.conf.new mkdir -p $PKG/usr/lib${LIBDIRSUFFIX}/pcsc/{drivers,services} ( cd $PKG - find . | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true - find . | xargs file | grep "shared object" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null + find . | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | \ + xargs strip --strip-unneeded 2> /dev/null || true + find . | xargs file | grep "shared object" | grep ELF | cut -f 1 -d : | \ + xargs strip --strip-unneeded 2> /dev/null ) ( cd $PKG/usr/man @@ -161,4 +171,4 @@ cat $CWD/slack-desc > $PKG/install/slack-desc cat $CWD/doinst.sh > $PKG/install/doinst.sh cd $PKG -/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.tgz +/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz} |