diff options
author | Willy Sudiarto Raharjo <willysr@slackware-id.org> | 2013-11-12 00:31:07 +0700 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2013-11-11 13:50:14 -0600 |
commit | 2dfc760f96822e5ce951f87eef826937c0a3013b (patch) | |
tree | 9a4ab65c6209715b8ec7e8b363f2fdf87528a698 /network/aria2/aria2.SlackBuild | |
parent | fe7ce9acffdd2a712f297a30b4476da6997b6f39 (diff) | |
download | slackbuilds-2dfc760f96822e5ce951f87eef826937c0a3013b.tar.gz |
network/aria2: Updated for version 1.18.1.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackware-id.org>
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
Diffstat (limited to 'network/aria2/aria2.SlackBuild')
-rw-r--r-- | network/aria2/aria2.SlackBuild | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/network/aria2/aria2.SlackBuild b/network/aria2/aria2.SlackBuild index b43e3a5b67..cb5a3983bc 100644 --- a/network/aria2/aria2.SlackBuild +++ b/network/aria2/aria2.SlackBuild @@ -3,19 +3,17 @@ # Written by Marco Cecchetti <mrc.ildp@gmail.com> PRGNAM=${PRGNAM:-aria2} -VERSION=${VERSION:-1.15.2} +VERSION=${VERSION:-1.18.1} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} HTTPS=${HTTPS:-gnutls} XML=${XML:-libxml2} -# 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 @@ -51,11 +49,11 @@ rm -rf $PRGNAM-$VERSION tar xvf $CWD/$PRGNAM-$VERSION.tar.xz 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" \ |