Date: Sunday, March 19, 2023 @ 17:06:37
  Author: dvzrv
Revision: 1424294

archrelease: copy trunk to multilib-x86_64

Added:
  lib32-alsa-plugins/repos/multilib-x86_64/PKGBUILD
    (from rev 1424293, lib32-alsa-plugins/trunk/PKGBUILD)
  lib32-alsa-plugins/repos/multilib-x86_64/keys/
Deleted:
  lib32-alsa-plugins/repos/multilib-x86_64/PKGBUILD

----------+
 PKGBUILD |  126 +++++++++++++++++++++++++++++++++----------------------------
 1 file changed, 70 insertions(+), 56 deletions(-)

Deleted: PKGBUILD
===================================================================
--- PKGBUILD    2023-03-19 17:06:22 UTC (rev 1424293)
+++ PKGBUILD    2023-03-19 17:06:37 UTC (rev 1424294)
@@ -1,56 +0,0 @@
-# Maintainer: David Runge <[email protected]>
-# Contributor: Jan Alexander Steffens (heftig) <[email protected]>
-
-_name=alsa-plugins
-pkgname=lib32-alsa-plugins
-pkgver=1.2.7.1
-pkgrel=1
-pkgdesc="Additional ALSA plugins (32-bit)"
-arch=(x86_64)
-url="https://www.alsa-project.org";
-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'
-  'lib32-jack: for pcm_jack plugin'
-  'lib32-libavtp: for pcm_aaf plugin'
-  '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'
-)
-options=(debug)
-source=(https://www.alsa-project.org/files/pub/plugins/$_name-$pkgver.tar.bz2{,.sig})
-sha512sums=('437c05a7e0175594768fd6a9a6d1a158bb4a01a7de6a42c2bd468d9381e01b64d385ddfac7d87baf84fe13cb4e65dc24da643940f416d4b191c528728822d964'
-            'SKIP')
-b2sums=('6f7aa503eda879cd273f36a16eec702b4da9267a60835cb5acbbfe355a83b7ffa3e93eb6483c9946c1d0bcd845a8f574470e7b84c66f793d0d0c6c9883ad52ee'
-        'SKIP')
-validpgpkeys=('F04DF50737AC1A884C4B3D718380596DA6E59C91') # ALSA Release Team 
(Package Signing Key v1) <[email protected]>
-
-prepare() {
-  cd $_name-$pkgver
-  autoreconf -fiv
-}
-
-build() {
-  cd $_name-$pkgver
-
-  export CC='gcc -m32'
-  export PKG_CONFIG=i686-pc-linux-gnu-pkg-config
-
-  ./configure \
-    --prefix=/usr \
-    --libdir=/usr/lib32 \
-    --sysconfdir=/etc \
-    --enable-maemo-plugin
-  make
-}
-
-package() {
-  depends+=(libasound.so)
-
-  make DESTDIR="$pkgdir" install -C $_name-$pkgver
-  rm -rv "$pkgdir"/{etc,usr/share}
-}
-# vim:set sw=2 et:

Copied: lib32-alsa-plugins/repos/multilib-x86_64/PKGBUILD (from rev 1424293, 
lib32-alsa-plugins/trunk/PKGBUILD)
===================================================================
--- PKGBUILD                            (rev 0)
+++ PKGBUILD    2023-03-19 17:06:37 UTC (rev 1424294)
@@ -0,0 +1,70 @@
+# Maintainer: David Runge <[email protected]>
+# Contributor: Jan Alexander Steffens (heftig) <[email protected]>
+
+_name=alsa-plugins
+pkgname=lib32-alsa-plugins
+pkgver=1.2.7.1
+pkgrel=2
+pkgdesc="Additional ALSA plugins (32-bit)"
+arch=(x86_64)
+url="https://www.alsa-project.org";
+license=(LGPL2.1)
+depends=(
+  "alsa-plugins=1:$pkgver"
+  lib32-alsa-lib
+  lib32-glibc
+)
+makedepends=(
+  lib32-libavtp
+  lib32-dbus
+  lib32-jack
+  lib32-libpulse
+  lib32-libsamplerate
+  lib32-speexdsp
+)
+optdepends=(
+  'lib32-dbus: for maemo plugin'
+  'lib32-jack: for pcm_jack plugin'
+  'lib32-libavtp: for pcm_aaf plugin'
+  '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/$_name-$pkgver.tar.bz2{,.sig})
+sha512sums=('437c05a7e0175594768fd6a9a6d1a158bb4a01a7de6a42c2bd468d9381e01b64d385ddfac7d87baf84fe13cb4e65dc24da643940f416d4b191c528728822d964'
+            'SKIP')
+b2sums=('6f7aa503eda879cd273f36a16eec702b4da9267a60835cb5acbbfe355a83b7ffa3e93eb6483c9946c1d0bcd845a8f574470e7b84c66f793d0d0c6c9883ad52ee'
+        'SKIP')
+validpgpkeys=('F04DF50737AC1A884C4B3D718380596DA6E59C91') # ALSA Release Team 
(Package Signing Key v1) <[email protected]>
+
+prepare() {
+  cd $_name-$pkgver
+  autoreconf -fiv
+}
+
+build() {
+  local configure_options=(
+    --prefix=/usr
+    --libdir=/usr/lib32
+    --sysconfdir=/etc
+    --enable-maemo-plugin
+  )
+
+  cd $_name-$pkgver
+
+  export CC='gcc -m32'
+  export PKG_CONFIG=i686-pc-linux-gnu-pkg-config
+
+  ./configure "${configure_options[@]}"
+  make
+}
+
+package() {
+  depends+=(
+    lib32-alsa-lib libasound.so
+  )
+
+  make DESTDIR="$pkgdir" install -C $_name-$pkgver
+  rm -rv "$pkgdir"/{etc,usr/share}
+}
+# vim:set sw=2 et:

Reply via email to