diff options
author | LukenShiro <lukenshiro@ngi.it> | 2013-11-11 09:01:35 -0600 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2013-11-11 10:53:35 -0600 |
commit | 192892025092432f653c2c3c8f8ccbadc381d7ee (patch) | |
tree | 2ded9ad9d0782ae95de085d8fa1d300209a15edf | |
parent | 28c8dd2691d15da6f40dbe33e8acbcb83e2b24a4 (diff) | |
download | slackbuilds-192892025092432f653c2c3c8f8ccbadc381d7ee.tar.gz |
system/opensc: Fix for 14.1 xsl-stylesheets version
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
-rw-r--r-- | system/opensc/opensc.SlackBuild | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/system/opensc/opensc.SlackBuild b/system/opensc/opensc.SlackBuild index 53f15d0013..b3a7a67f88 100644 --- a/system/opensc/opensc.SlackBuild +++ b/system/opensc/opensc.SlackBuild @@ -24,7 +24,7 @@ PRGNAM=opensc VERSION=${VERSION:-0.13.0} -BUILD=${BUILD:-1} +BUILD=${BUILD:-2} TAG=${TAG:-_SBo} if [ -z "$ARCH" ]; then @@ -41,7 +41,7 @@ PKG=$TMP/package-$PRGNAM OUTPUT=${OUTPUT:-/tmp} DOCFILES="README COPYING NEWS ChangeLog" -XSL_STYLESHEETS_VER=1.76.1 +XSL_STYLESHEETS_VER=1.78.1 # opensc now supports only one reader subsystem (pcsc-lite or openct) OPENCT=${OPENCT:-0} # pcsc-lite is the default, openct disabled @@ -74,11 +74,11 @@ rm -rf $PRGNAM-$VERSION tar xvf $CWD/$PRGNAM-$VERSION.tar.gz cd $PRGNAM-$VERSION chown -R root:root . -find . \ +find -L . \ \( -perm 777 -o -perm 775 -o -perm 711 -o -perm 555 -o -perm 511 \) \ -exec chmod 755 {} \; -o \ - \( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \ - -exec chmod 644 {} \; + \( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \ + -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \; # --enable-nsplugin and --with-pinentry= are no longer supported. CFLAGS="$SLKCFLAGS" \ |