Date: Friday, October 16, 2020 @ 06:57:53 Author: alucryd Revision: 724324
upgpkg: lib32-soundtouch 2.2-1 Modified: lib32-soundtouch/trunk/PKGBUILD ----------+ PKGBUILD | 17 ++++++++++++----- 1 file changed, 12 insertions(+), 5 deletions(-) Modified: PKGBUILD =================================================================== --- PKGBUILD 2020-10-16 06:40:05 UTC (rev 724323) +++ PKGBUILD 2020-10-16 06:57:53 UTC (rev 724324) @@ -2,7 +2,7 @@ # Contributor: josephgbr <[email protected]> pkgname=lib32-soundtouch -pkgver=2.1.2 +pkgver=2.2 pkgrel=1 pkgdesc='An audio processing library' arch=(x86_64) @@ -13,9 +13,16 @@ soundtouch ) makedepends=(git) -source=(git+https://gitlab.com/soundtouch/soundtouch.git#tag=${pkgver}) +_tag=762f56024b7ade81f6565903161dffec0ad4741e +source=(git+https://gitlab.com/soundtouch/soundtouch.git#tag=${_tag}) sha256sums=(SKIP) +pkgver() { + cd soundtouch + + git describe --tags +} + prepare() { cd soundtouch @@ -27,11 +34,11 @@ export CC='gcc -m32' export CXX='g++ -m32' - export PKG_CONFIG_PATH='/usr/lib32/pkgconfig' + export PKG_CONFIG_PATH=/usr/lib32/pkgconfig ./configure \ - --prefix='/usr' \ - --libdir='/usr/lib32' \ + --prefix=/usr \ + --libdir=/usr/lib32 \ --enable-shared make }
