diff options
Diffstat (limited to 'system/lxterminal/lxterminal.SlackBuild')
-rw-r--r-- | system/lxterminal/lxterminal.SlackBuild | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/system/lxterminal/lxterminal.SlackBuild b/system/lxterminal/lxterminal.SlackBuild index 1e58a6ed75de..59601b818b51 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-2014 Matteo Bernardini, Pisa, IT +# Copyright (c) 2010-2016 Matteo Bernardini, Pisa, IT # All rights reserved. # # Permission to use, copy, modify, and distribute this software for @@ -57,6 +57,8 @@ # * Update. # 20160607_2cea95a: 13/jun/2016 by Matteo Bernardini <ponce@slackbuilds.org> # * Update. +# 0.3.0: 20/dec/2016 by Matteo Bernardini <ponce@slackbuilds.org> +# * Update. # # Run 'sh lxterminal.SlackBuild' to build a Slackware package. # The package is created in /tmp . @@ -64,30 +66,26 @@ # # ----------------------------------------------------------------------------- -# Set initial variables: - PRGNAM=lxterminal -VERSION=${VERSION:-20160607_2cea95a} +VERSION=${VERSION:-0.3.0} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} if [ -z "$ARCH" ]; then case "$( uname -m )" in - i?86) ARCH=i486 ;; + i?86) ARCH=i586 ;; arm*) ARCH=arm ;; *) ARCH=$( uname -m ) ;; esac fi -DOCS="AUTHORS COPYING ChangeLog NEWS README" - CWD=$(pwd) TMP=${TMP:-/tmp/SBo} PKG=$TMP/package-$PRGNAM OUTPUT=${OUTPUT:-/tmp} -if [ "$ARCH" = "i486" ]; then - SLKCFLAGS="-O2 -march=i486 -mtune=i686" +if [ "$ARCH" = "i586" ]; then + SLKCFLAGS="-O2 -march=i586 -mtune=i686" LIBDIRSUFFIX="" elif [ "$ARCH" = "i686" ]; then SLKCFLAGS="-O2 -march=i686 -mtune=i686" @@ -102,6 +100,8 @@ fi gtk3="" ; [ "${GTK3:-no}" = "yes" ] && gtk3="--enable-gtk3" +DOCS="AUTHORS COPYING ChangeLog NEWS" + set -e rm -rf $PKG |