From bb4433ddbf1c0cee32f491d93afa898a32d86376 Mon Sep 17 00:00:00 2001 From: Eric Hameleers Date: Sat, 22 Sep 2018 12:56:48 +0200 Subject: Updated and rebuilt some of the deps OpenAL: updated cryfs: rebuilt against the new cryptopp cryptopp: updated libxkbcommon: updated qt5: updated --- deps/OpenAL/.url | 2 +- deps/OpenAL/OpenAL.SlackBuild | 22 ++++++++++++++++------ 2 files changed, 17 insertions(+), 7 deletions(-) (limited to 'deps/OpenAL') diff --git a/deps/OpenAL/.url b/deps/OpenAL/.url index ddc7105..d6fe6f6 100644 --- a/deps/OpenAL/.url +++ b/deps/OpenAL/.url @@ -1,2 +1,2 @@ -http://kcat.strangesoft.net/openal-releases/openal-soft-1.18.2.tar.bz2 +http://kcat.strangesoft.net/openal-releases/openal-soft-1.19.0.tar.bz2 diff --git a/deps/OpenAL/OpenAL.SlackBuild b/deps/OpenAL/OpenAL.SlackBuild index d6c79c5..423f42f 100755 --- a/deps/OpenAL/OpenAL.SlackBuild +++ b/deps/OpenAL/OpenAL.SlackBuild @@ -1,6 +1,6 @@ #!/bin/sh # Copyright 2014 Patrick J. Volkerding, Sebeka, MN, USA -# Copyright 2012, 2013, 2014, 2015, 2017 Eric Hameleers, Eindhoven, NL +# Copyright 2012, 2013, 2014, 2015, 2017, 2018 Eric Hameleers, Eindhoven, NL # All rights reserved. # # Permission to use, copy, modify, and distribute this software for @@ -23,13 +23,14 @@ # ----------------------------------------------------------------------------- +cd $(dirname $0) ; CWD=$(pwd) + PKGNAM=OpenAL SRCNAM=openal-soft -VERSION=${VERSION:-1.18.2} +VERSION=${VERSION:-1.19.0} BUILD=${BUILD:-1} -NUMJOBS=${NUMJOBS:-" -j4 "} +NUMJOBS=${NUMJOBS:-"-j$(nproc)"} -CWD=$(pwd) TMP=${TMP:-/tmp} PKG=$TMP/package-$PKGNAM @@ -68,6 +69,14 @@ else LIBDIRSUFFIX="" fi +# If the variable PRINT_PACKAGE_NAME is set, then this script will report what +# the name of the created package would be, and then exit. This information +# could be useful to other scripts. +if [ ! -z "${PRINT_PACKAGE_NAME}" ]; then + echo "${PKGNAM}-${VERSION}-${ARCH}-${BUILD}.txz" + exit 0 +fi + rm -rf $PKG mkdir -p $TMP $PKG cd $TMP @@ -90,9 +99,10 @@ cd build -DMAN_INSTALL_DIR=/usr/man \ -DSYSCONF_INSTALL_DIR=/etc \ -DLIB_SUFFIX=${LIBDIRSUFFIX} \ + -G Ninja \ .. - make $NUMJOBS || make || exit 1 - make install DESTDIR=$PKG || exit 1 + ninja || exit 1 + DESTDIR=$PKG ninja install || exit 1 cd - # Add an example configuration file: -- cgit v1.2.3