aboutsummaryrefslogtreecommitdiff
path: root/system/execline/execline.SlackBuild
diff options
context:
space:
mode:
authorMuhammad Mahendra Subrata <mumahendras3@gmail.com>2022-06-17 17:58:19 +0800
committerWilly Sudiarto Raharjo <willysr@slackbuilds.org>2022-06-19 11:43:56 +0700
commit81aafc6bf5e8161e4f180511418faae8062a1d78 (patch)
tree816d7f479ffd55ab1905adcad2262b82c3fc0ac4 /system/execline/execline.SlackBuild
parent6a1a1bb9da8e82d69a72f18231ad0224c1574a57 (diff)
system/execline: Updated for version 2.9.0.0, general fixups/cleanups
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'system/execline/execline.SlackBuild')
-rw-r--r--system/execline/execline.SlackBuild18
1 files changed, 10 insertions, 8 deletions
diff --git a/system/execline/execline.SlackBuild b/system/execline/execline.SlackBuild
index 398f9d1fd4e1b..6d13792832cf1 100644
--- a/system/execline/execline.SlackBuild
+++ b/system/execline/execline.SlackBuild
@@ -30,8 +30,8 @@
cd $(dirname $0) ; CWD=$(pwd)
PRGNAM=execline
-VERSION=${VERSION:-2.8.3.0}
-BUILD=${BUILD:-2}
+VERSION=${VERSION:-2.9.0.0}
+BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
PKGTYPE=${PKGTYPE:-tgz}
@@ -66,17 +66,19 @@ else
LIBDIRSUFFIX=""
fi
-# By default, only static libraries are built. If you need to build the shared libraries, just pass
-# BUILD_SHARED=yes to this script
+# By default, only static libraries are built. If you want to also build the
+# shared libraries, just pass BUILD_SHARED=yes to this script.
BUILD_STATIC=${BUILD_STATIC:-yes}
BUILD_SHARED=${BUILD_SHARED:-no}
[ "$BUILD_STATIC" = "no" ] && LIBS_CONF="--disable-static"
[ "$BUILD_SHARED" = "yes" ] && LIBS_CONF="--enable-shared $LIBS_CONF"
-# By default, all binaries are linked against the static versions of the skarnet.org libraries
-# Pass LINK_SHARED=yes to link the binaries against the shared versions of the skarnet.org libraries
-# Also, if you only built the shared versions of the skarnet.org libraries, the binaries will be
-# linked against shared libraries automatically, as though LINK_SHARED=yes is passed to this script
+# By default, all binaries are linked against the static versions of the
+# skarnet.org libraries. Pass LINK_SHARED=yes to link the binaries against the
+# shared versions of the skarnet.org libraries. If you only built the shared
+# versions of the skarnet.org libraries, the binaries will be linked against
+# shared libraries automatically, as though LINK_SHARED=yes is passed to this
+# script.
LINK_SHARED=${LINK_SHARED:-no}
[ "$LINK_SHARED" = "yes" ] && LIBS_CONF="--disable-allstatic $LIBS_CONF"