diff options
Diffstat (limited to 'system/lxterminal/lxterminal.SlackBuild')
-rw-r--r-- | system/lxterminal/lxterminal.SlackBuild | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/system/lxterminal/lxterminal.SlackBuild b/system/lxterminal/lxterminal.SlackBuild index 59601b818b..1f45b85651 100644 --- a/system/lxterminal/lxterminal.SlackBuild +++ b/system/lxterminal/lxterminal.SlackBuild @@ -1,7 +1,7 @@ #!/bin/sh # $Id: lxterminal.SlackBuild,v 1.6 2009/09/11 10:43:05 root Exp root $ # Copyright (c) 2008-2009 Eric Hameleers, Eindhoven, NL -# Copyright (c) 2010-2016 Matteo Bernardini, Pisa, IT +# Copyright (c) 2010-2017 Matteo Bernardini, Pisa, IT # All rights reserved. # # Permission to use, copy, modify, and distribute this software for @@ -59,6 +59,8 @@ # * Update. # 0.3.0: 20/dec/2016 by Matteo Bernardini <ponce@slackbuilds.org> # * Update. +# 20170124_a29172d: 24/jan/2017 by Matteo Bernardini <ponce@slackbuilds.org> +# * Update. # # Run 'sh lxterminal.SlackBuild' to build a Slackware package. # The package is created in /tmp . @@ -67,7 +69,7 @@ # ----------------------------------------------------------------------------- PRGNAM=lxterminal -VERSION=${VERSION:-0.3.0} +VERSION=${VERSION:-20170124_a29172d} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} @@ -112,10 +114,10 @@ tar xvf $CWD/$PRGNAM-$VERSION.tar.?z* 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 {} \; sh autogen.sh || true |