diff options
author | Willy Sudiarto Raharjo <willysr@slackware-id.org> | 2013-11-10 09:15:15 +0700 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2013-11-11 10:53:34 -0600 |
commit | 87e77c16fcb93ef2f4fc58e4e23acccb10ae659c (patch) | |
tree | de53d4bf27dd1a5c63f23a7ba879c3c9b89fd67e /system/xchm/xchm.SlackBuild | |
parent | b809ae0d59ff382444e91657ea80ba499beec91e (diff) | |
download | slackbuilds-87e77c16fcb93ef2f4fc58e4e23acccb10ae659c.tar.gz |
system/xchm: Updated for version 1.23.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackware-id.org>
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
Diffstat (limited to 'system/xchm/xchm.SlackBuild')
-rw-r--r-- | system/xchm/xchm.SlackBuild | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/system/xchm/xchm.SlackBuild b/system/xchm/xchm.SlackBuild index 3ae982ce55..14f0943b9e 100644 --- a/system/xchm/xchm.SlackBuild +++ b/system/xchm/xchm.SlackBuild @@ -4,16 +4,14 @@ # Written by Michael Gehring <mg@ebfe.org> PRGNAM=xchm -VERSION=${VERSION:-1.14} +VERSION=${VERSION:-1.23} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} -# Automatically determine the architecture we're building on: if [ -z "$ARCH" ]; then case "$( uname -m )" in i?86) ARCH=i486 ;; arm*) ARCH=arm ;; - # Unless $ARCH is already set, use uname -m for all other archs: *) ARCH=$( uname -m ) ;; esac fi @@ -46,11 +44,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 {} \; CFLAGS=$SLKCFLAGS \ CXXFLAGS=$SLKCFLAGS \ @@ -66,7 +64,7 @@ strip --strip-unneeded $PKG/usr/bin/$PRGNAM 2> /dev/null mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION cp -a \ - ABOUT-NLS AUTHORS ChangeLog COPYING INSTALL NEWS README README.xmlrpc \ + ABOUT-NLS AUTHORS ChangeLog COPYING INSTALL README README.xmlrpc \ $PKG/usr/doc/$PRGNAM-$VERSION cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild |