diff options
Diffstat (limited to 'libraries/skalibs/skalibs.SlackBuild')
-rw-r--r-- | libraries/skalibs/skalibs.SlackBuild | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/libraries/skalibs/skalibs.SlackBuild b/libraries/skalibs/skalibs.SlackBuild index cb1f77ebdd..1912860771 100644 --- a/libraries/skalibs/skalibs.SlackBuild +++ b/libraries/skalibs/skalibs.SlackBuild @@ -26,7 +26,7 @@ cd $(dirname $0) ; CWD=$(pwd) PRGNAM=skalibs -VERSION=${VERSION:-2.11.2.0} +VERSION=${VERSION:-2.12.0.0} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} PKGTYPE=${PKGTYPE:-tgz} @@ -65,18 +65,19 @@ else LIBDIRSUFFIX="" fi -# Upstream recommends building skarnet.org softwares using the static -# version of skalibs so we are going to build just the static version of skalibs by default -# If you need to build the shared libraries, just pass BUILD_SHARED=yes to this script +# Upstream recommends building skarnet.org software with static libraries, as +# most of skarnet.org software are small enough that shared libraries are +# generally not worth using. Therefore, we will only build the static libraries +# by default. BUILD_STATIC=${BUILD_STATIC:-yes} BUILD_SHARED=${BUILD_SHARED:-no} [ "$BUILD_STATIC" = "no" ] && LIBS_CONF="--disable-static" [ "$BUILD_SHARED" = "no" ] && LIBS_CONF="--disable-shared $LIBS_CONF" -# The execvep() function from skalibs (used by all skarnet.org softwares) has a default -# executable search path that will be used if the PATH environment variable is undefined. -# The default is /usr/bin:/bin. Pass DEF_PATH=some:path:list to the script if you want to -# change it. +# The execvep() function from skalibs (used by all skarnet.org software) has a +# default executable search path that will be used if the PATH environment +# variable is undefined. The default is /usr/bin:/bin. Pass +# DEF_PATH=some:path:list to this script if you want to change it. DEF_PATH=${DEF_PATH:-/usr/bin:/bin} set -e |