diff options
author | Max Rees <maxcrees@me.com> | 2018-09-26 22:53:51 -0400 |
---|---|---|
committer | Max Rees <maxcrees@me.com> | 2018-09-26 22:53:51 -0400 |
commit | 203449cf37e45877af456fcfe5aaf2065baa383c (patch) | |
tree | c9feac33caa3432931f8ae40743842ee14e4f067 /user/alsa-plugins/APKBUILD | |
parent | 8050c93e6c88718013d703925d33737d196470a4 (diff) | |
download | packages-203449cf37e45877af456fcfe5aaf2065baa383c.tar.gz packages-203449cf37e45877af456fcfe5aaf2065baa383c.tar.bz2 packages-203449cf37e45877af456fcfe5aaf2065baa383c.tar.xz packages-203449cf37e45877af456fcfe5aaf2065baa383c.zip |
user/alsa-plugins: new package
Diffstat (limited to 'user/alsa-plugins/APKBUILD')
-rw-r--r-- | user/alsa-plugins/APKBUILD | 58 |
1 files changed, 58 insertions, 0 deletions
diff --git a/user/alsa-plugins/APKBUILD b/user/alsa-plugins/APKBUILD new file mode 100644 index 000000000..304b63ab4 --- /dev/null +++ b/user/alsa-plugins/APKBUILD @@ -0,0 +1,58 @@ +# Contributor: Taner Tas <taner76@gmail.com> +# Maintainer: Max Rees <maxcrees@me.com> +pkgname=alsa-plugins +pkgver=1.1.6 +pkgrel=0 +pkgdesc="Advanced Linux Sound Architecture (ALSA) plugins" +url="https://www.alsa-project.org/main/index.php/Main_Page" +arch="all" +options="!check" # No test suite. +license="GPL-2.0+ AND LGPL-2.1+ AND BSD-3-Clause AND MIT" +makedepends="linux-headers alsa-lib-dev speexdsp-dev ffmpeg-dev + libsamplerate-dev pulseaudio-dev" +subpackages="$pkgname-lavcrate $pkgname-pulse $pkgname-a52" +source="ftp://ftp.alsa-project.org/pub/plugins/$pkgname-$pkgver.tar.bz2" + +prepare() { + default_prepare + update_config_sub +} + +build() { + cd "$builddir" + ./configure \ + --build=$CBUILD \ + --host=$CHOST \ + --prefix=/usr \ + --sysconfdir=/etc \ + --mandir=/usr/share/man \ + --localstatedir=/var + make +} + +package() { + cd "$builddir" + make DESTDIR="$pkgdir" install + find "$pkgdir" -name '*.la' -type f -delete +} + +lavcrate() { + pkgdesc="FFmpeg samplerate conversion plugins for ALSA" + mkdir -p "$subpkgdir"/usr/lib/alsa-lib/ + mv "$pkgdir"/usr/lib/alsa-lib/*lavcrate* "$subpkgdir"/usr/lib/alsa-lib/ +} + +pulse() { + pkgdesc="PulseAudio support for ALSA-only applications" + mkdir -p "$subpkgdir"/usr/lib/alsa-lib/ + mv "$pkgdir"/usr/lib/alsa-lib/*pulse.so "$subpkgdir"/usr/lib/alsa-lib/ + mv "$pkgdir"/usr/share "$subpkgdir"/usr/ +} + +a52() { + pkgdesc="S16 linear sound format to A52 compressed format for SPDIF output" + mkdir -p "$subpkgdir"/usr/lib/alsa-lib/ + mv "$pkgdir"/usr/lib/alsa-lib/*a52.so "$subpkgdir"/usr/lib/alsa-lib/ +} + +sha512sums="f01633cd7166a2fba4c5b4d5d786b5a2122f6a810f5b5b7209c42033759d116a4515174e7ee57973d5de716be88a246d733dc5a2daf92b72377c274b04db401b alsa-plugins-1.1.6.tar.bz2" |