Date: Friday, November 15, 2019 @ 16:24:43
Author: anatolik
Revision: 368925
archrelease: copy trunk to testing-x86_64
Added:
alsa-plugins/repos/testing-x86_64/
alsa-plugins/repos/testing-x86_64/PKGBUILD
(from rev 368924, alsa-plugins/trunk/PKGBUILD)
----------+
PKGBUILD | 39 +++++++++++++++++++++++++++++++++++++++
1 file changed, 39 insertions(+)
Copied: alsa-plugins/repos/testing-x86_64/PKGBUILD (from rev 368924,
alsa-plugins/trunk/PKGBUILD)
===================================================================
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2019-11-15 16:24:43 UTC (rev 368925)
@@ -0,0 +1,39 @@
+# Maintainer: Jan Alexander Steffens (heftig) <[email protected]>
+# Contributor: Sergej Pupykin <[email protected]>
+# Contributor: Daniel Ehlers <[email protected]>
+
+pkgname=alsa-plugins
+pkgver=1.2.1
+pkgrel=1
+pkgdesc="Extra alsa plugins"
+arch=(x86_64)
+url="http://www.alsa-project.org"
+license=(GPL)
+depends=(alsa-lib)
+makedepends=(libpulse jack ffmpeg)
+optdepends=('libpulse: PulseAudio plugin'
+ 'jack: Jack plugin'
+ #'ffmpeg: libavcodec resampling plugin, a52 plugin'
+ 'libsamplerate: libsamplerate resampling plugin'
+ 'speex: libspeexdsp resampling plugin')
+source=("ftp://ftp.alsa-project.org/pub/plugins/$pkgname-$pkgver.tar.bz2")
+sha256sums=('4d94de7ad41734b8604a652521200bb6554fcf0c2c00fdbd302b1710d76548da')
+
+prepare() {
+ cd $pkgname-$pkgver
+ autoreconf -fvi
+}
+
+build() {
+ cd $pkgname-$pkgver
+ ./configure --prefix=/usr --sysconfdir=/etc
+ make
+}
+
+package() {
+ cd $pkgname-$pkgver
+ make DESTDIR="$pkgdir" install
+
+ install -d "$pkgdir/usr/share/doc/$pkgname"
+ install -m644 doc/README* doc/*.txt "$pkgdir/usr/share/doc/$pkgname/"
+}