111 lines
2.5 KiB
Bash
111 lines
2.5 KiB
Bash
# POWER Maintainer: Alexander Baldeck <alex.bldck@gmail.com>
|
|
# Maintainer:
|
|
# Contributor: David Runge <dvzrv@archlinux.org>
|
|
# Contributor: Eric Bélanger <eric@archlinux.org>
|
|
|
|
pkgname=sox
|
|
# using a git snapshot as 14.4.2 has many unfixed security vulns
|
|
pkgver=14.4.2+r184+gf3094754
|
|
pkgrel=1
|
|
pkgdesc="The Swiss Army knife of sound processing tools"
|
|
arch=(x86_64 powerpc64le powerpc64 powerpc riscv64)
|
|
url="https://sox.sourceforge.net/"
|
|
license=('GPL2' 'LGPL2.1')
|
|
depends=(
|
|
'file'
|
|
'gcc-libs'
|
|
'gsm'
|
|
'libid3tag'
|
|
'libltdl'
|
|
'libpng'
|
|
'zlib'
|
|
)
|
|
makedepends=(
|
|
'alsa-lib'
|
|
'autoconf-archive'
|
|
'flac'
|
|
'git'
|
|
'lame'
|
|
'libao'
|
|
'libmad'
|
|
'libpulse'
|
|
'libsndfile'
|
|
'libvorbis'
|
|
'opencore-amr'
|
|
'opusfile'
|
|
'twolame'
|
|
'wavpack'
|
|
)
|
|
checkdepends=('time')
|
|
optdepends=(
|
|
'alsa-lib: alsa plugin'
|
|
'flac: flac plugin'
|
|
'lame: mp3 plugin'
|
|
'libao: ao plugin'
|
|
'libmad: mp3 plugin'
|
|
'libpulse: pulse plugin'
|
|
'libsndfile: caf, fap, mat4, mat5, paf, pvf, sd2, sndfile, w64 and xi plugins'
|
|
'libvorbis: vorbis plugin'
|
|
'opencore-amr: amr_nb and amr_wb plugins'
|
|
'opusfile: opus plugin'
|
|
'twolame: mp3 plugin'
|
|
'wavpack: wavpack plugin'
|
|
)
|
|
provides=('libsox.so')
|
|
_commit=f3094754a7c2a7e55c35621d20fa9945736e72df # master
|
|
source=("sox-code::git+https://git.code.sf.net/p/sox/code#commit=${_commit}"
|
|
"unfixed-issues.patch"
|
|
"CVE-2023-32627.patch")
|
|
sha256sums=('affffe2c3901b4859beb41bfc1d663ab959c968a3635a448359d50b1142a3d6a'
|
|
'1dc118fb304bc98e1e92f31ae90aa6e55ef1518a262d79a17c70b37ac6dcab9d'
|
|
'0fff925c8d1c743e2e524bcb01c16fc9c9d1781f661806a0ed602050fc3b8d67')
|
|
|
|
pkgver() {
|
|
cd sox-code
|
|
git describe --tags | sed 's/^sox-//;s/[^-]*-g/r&/;s/-/+/g'
|
|
}
|
|
|
|
prepare() {
|
|
cd sox-code
|
|
# https://www.openwall.com/lists/oss-security/2023/02/03/3
|
|
patch -Np1 -i ../unfixed-issues.patch
|
|
# https://sourceforge.net/p/sox/bugs/369/
|
|
patch -Np1 -i ../CVE-2023-32627.patch
|
|
autoreconf -vfi
|
|
}
|
|
|
|
build() {
|
|
local configure_flags=(
|
|
--prefix=/usr
|
|
--sysconfdir=/etc
|
|
--localstatedir=/var
|
|
--enable-formats=dyn
|
|
--with-distro="Arch Linux"
|
|
)
|
|
|
|
cd sox-code
|
|
./configure "${configure_flags[@]}"
|
|
sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
|
|
make all README
|
|
}
|
|
|
|
check() (
|
|
cd sox-code/src
|
|
|
|
export DESTDIR="${PWD}/tmp"
|
|
mkdir -p "${DESTDIR}"
|
|
|
|
export LD_LIBRARY_PATH="${DESTDIR}/usr/lib${LD_LIBRARY_PATH:+:$LD_LIBRARY_PATH}"
|
|
|
|
make sox_sample_test
|
|
make install
|
|
make installcheck
|
|
)
|
|
|
|
package() {
|
|
cd sox-code
|
|
make DESTDIR="${pkgdir}" install
|
|
install -vDm644 AUTHORS ChangeLog README \
|
|
-t "${pkgdir}/usr/share/doc/${pkgname}"
|
|
}
|