mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-24 10:02:29 +01:00
audio/apulse: Updated for version 0.1.5 & detect multilib.
Signed-off-by: Ryan P.C. McQuen <ryan.q@linux.com> Thanks to B. Watson for the multilib code. :-)
This commit is contained in:
parent
2607289059
commit
58e9ea52ff
3 changed files with 13 additions and 9 deletions
|
@ -6,7 +6,9 @@ Any app that requires pulseaudio can be run as such:
|
|||
|
||||
PulseAudio is not required.
|
||||
|
||||
To install this on a multilib machine with 32-bit compatibility
|
||||
libraries, run the SlackBuild preceded by COMPAT32=yes, like so:
|
||||
The SlackBuild now detects a multilib machine and will
|
||||
build with COMPAT32 libraries. If you have a reason
|
||||
to bypass this, run:
|
||||
|
||||
# COMPAT32=no sh apulse.SlackBuild
|
||||
|
||||
# COMPAT32=yes sh apulse.SlackBuild
|
||||
|
|
|
@ -23,7 +23,7 @@
|
|||
# <http://www.gnu.org/licenses/>.
|
||||
|
||||
PRGNAM=apulse
|
||||
VERSION=${VERSION:-0.1.3}
|
||||
VERSION=${VERSION:-0.1.5}
|
||||
BUILD=${BUILD:-1}
|
||||
TAG=${TAG:-_SBo}
|
||||
|
||||
|
@ -53,8 +53,10 @@ elif [ "$ARCH" = "x86_64" ]; then
|
|||
SLKCFLAGS="-O2 -fPIC"
|
||||
TARGET="x86_64"
|
||||
LIBDIRSUFFIX="64"
|
||||
# set 32-bit compatibility flag default
|
||||
COMPAT32=${COMPAT32:-no}
|
||||
## automatically detect multilib, can be
|
||||
## overridden by prepending the build with:
|
||||
## COMPAT32=no
|
||||
[ -e /lib/libc.so.6 ] && COMPAT32="${COMPAT32:-yes}"
|
||||
else
|
||||
SLKCFLAGS="-O2"
|
||||
LIBDIRSUFFIX=""
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
PRGNAM="apulse"
|
||||
VERSION="0.1.3"
|
||||
VERSION="0.1.5"
|
||||
HOMEPAGE="https://github.com/i-rinat/apulse"
|
||||
DOWNLOAD="https://github.com/i-rinat/apulse/archive/v0.1.3.tar.gz"
|
||||
MD5SUM="a8d02a6175a4835e0477b7055c561be7"
|
||||
DOWNLOAD="https://github.com/i-rinat/apulse/archive/v0.1.5.tar.gz"
|
||||
MD5SUM="48cd971011f2c9d864cf3dad24803c32"
|
||||
DOWNLOAD_x86_64=""
|
||||
MD5SUM_x86_64=""
|
||||
REQUIRES=""
|
||||
|
|
Loading…
Reference in a new issue