Date: Monday, May 31, 2021 @ 18:00:59 Author: dvzrv Revision: 952852 upgpkg: lib32-alsa-plugins 1.2.5-1: Upgrade to 1.2.5.
Add fixed dependency on the corresponding alsa-plugins version. Modified: lib32-alsa-plugins/trunk/PKGBUILD ----------+ PKGBUILD | 19 +++++++++++-------- 1 file changed, 11 insertions(+), 8 deletions(-) Modified: PKGBUILD =================================================================== --- PKGBUILD 2021-05-31 17:54:53 UTC (rev 952851) +++ PKGBUILD 2021-05-31 18:00:59 UTC (rev 952852) @@ -1,14 +1,15 @@ # Maintainer: David Runge <dv...@archlinux.org> # Contributor: Jan Alexander Steffens (heftig) <jan.steff...@gmail.com> +_name=alsa-plugins pkgname=lib32-alsa-plugins -pkgver=1.2.2 +pkgver=1.2.5 pkgrel=1 pkgdesc="Additional ALSA plugins (32-bit)" arch=(x86_64) url="https://www.alsa-project.org" -license=(GPL) -depends=('lib32-glibc' 'lib32-alsa-lib' 'alsa-plugins') +license=('LGPL2.1') +depends=("alsa-plugins=1:${pkgver}" 'lib32-alsa-lib' 'lib32-glibc') makedepends=('lib32-dbus' 'lib32-jack' 'lib32-libavtp' 'lib32-libpulse' 'lib32-libsamplerate' 'lib32-speexdsp') optdepends=('lib32-dbus: for maemo plugin' @@ -18,16 +19,17 @@ 'lib32-libsamplerate: for rate_samplerate plugin' 'lib32-libpulse: for conf_pulse, ctl_pulse and pcm_pulse plugins' 'lib32-speexdsp: for pcm_speex and rate_speexrate plugins') -source=("https://www.alsa-project.org/files/pub/plugins/alsa-plugins-$pkgver.tar.bz2") -sha256sums=('1c0f06450c928d711719686c9dbece2d480184f36fab11b8f0534cb7b41e337d') +source=("https://www.alsa-project.org/files/pub/plugins/${_name}-$pkgver.tar.bz2") +sha512sums=('32aa475ec4af040861c2bfb01eac71042242d2109d3c5102d0111f3327e3f6c9031c32cbb50eb4b6568a6bd9408691a047a39972f09d6087e31ec11f19ddc9cf') +b2sums=('a1bb2f187c92a2999722e22775baf2c1fc4240162bb71f454c60359ef61b46934ff8ecd5af97589bafe2c7f737530cf5a4dcc139af7ed001d8dfe24bf3ae045c') prepare() { - cd alsa-plugins-$pkgver + cd "${_name}-$pkgver" autoreconf -fvi } build() { - cd alsa-plugins-$pkgver + cd "${_name}-$pkgver" export CC='gcc -m32' export PKG_CONFIG=i686-pc-linux-gnu-pkg-config @@ -42,7 +44,8 @@ package() { depends+=(libasound.so) - cd alsa-plugins-$pkgver + + cd "${_name}-$pkgver" make DESTDIR="$pkgdir" install rm -r "$pkgdir"/{etc,usr/share} }