diff options
author | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2014-05-23 22:03:26 -0500 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2014-05-29 06:30:07 +0700 |
commit | 0dfe3ad3234e5d9facbaf099aedd86cd212806a5 (patch) | |
tree | 67423ef15b4a44a318f9e10fa356c9e3a9f3ed46 /network/hexchat/hexchat.SlackBuild | |
parent | f39b88377570424261e6ecd048332c3304645039 (diff) | |
download | slackbuilds-0dfe3ad3234e5d9facbaf099aedd86cd212806a5.tar.gz |
network/hexchat: Updated for version 2.9.6.1.
Signed-off-by: Erik Hanson <erik@slackbuilds.org>
Diffstat (limited to 'network/hexchat/hexchat.SlackBuild')
-rw-r--r-- | network/hexchat/hexchat.SlackBuild | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/network/hexchat/hexchat.SlackBuild b/network/hexchat/hexchat.SlackBuild index 9c2f04610a..b190e663be 100644 --- a/network/hexchat/hexchat.SlackBuild +++ b/network/hexchat/hexchat.SlackBuild @@ -3,6 +3,8 @@ # Slackware build script for hexchat # Copyright 2012 crocket crockabiscuit@gmail.com +# Copyright 2012-2014 Gerardo Zamudio +# Copyright 2014 Willy Sudiarto Raharjo <willysr@slackbuilds.org> # All rights reserved. # # Redistribution and use of this script, with or without modification, is @@ -23,7 +25,7 @@ # ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. PRGNAM=hexchat -VERSION=${VERSION:-2.9.4} +VERSION=${VERSION:-2.9.6.1} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} @@ -64,12 +66,11 @@ tar xvf $CWD/$PRGNAM-$VERSION.tar.xz cd $PRGNAM-$VERSION chown -R root:root . find -L . \ - \( -perm 777 -o -perm 775 -o -perm 750 -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 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \ + -o -perm 511 \) -exec chmod 755 {} \; -o \ + \( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \ + -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \; -./autogen.sh CFLAGS="$SLKCFLAGS" \ CXXFLAGS="$SLKCFLAGS" \ ./configure \ @@ -80,6 +81,8 @@ CXXFLAGS="$SLKCFLAGS" \ --enable-ipv6 \ --enable-socks \ --mandir=/usr/man \ + --enable-textfe \ + --enable-openssl \ --docdir=/usr/doc/$PRGNAM-$VERSION \ --build=$ARCH-slackware-linux |