56 lines
1.4 KiB
Bash
56 lines
1.4 KiB
Bash
# Template build file for 'alsa-plugins'.
|
|
pkgname=alsa-plugins
|
|
version=1.1.6
|
|
revision=2
|
|
build_style=gnu-configure
|
|
configure_args="--disable-maemo-plugin"
|
|
hostmakedepends="pkg-config"
|
|
makedepends="ffmpeg-devel jack-devel libsamplerate-devel pulseaudio-devel"
|
|
short_desc="Advanced Linux Sound Architecture (ALSA) extra plugins"
|
|
maintainer="Juan RP <xtraeme@voidlinux.eu>"
|
|
license="GPL-2.0-or-later, LGPL-2.1-or-later"
|
|
homepage="http://www.alsa-project.org"
|
|
distfiles="ftp://ftp.alsa-project.org/pub/plugins/${pkgname}-${version}.tar.bz2"
|
|
checksum=6f1d31ebe3b1fa1cc8dade60b7bed1cb2583ac998167002d350dc0a5e3e40c13
|
|
|
|
alsa-plugins-jack_package() {
|
|
short_desc+=" - Jack output plugin"
|
|
pkg_install() {
|
|
vmove "usr/lib/alsa-lib/*jack*"
|
|
}
|
|
}
|
|
|
|
alsa-plugins-pulseaudio_package() {
|
|
short_desc+=" - Pulseaudio output plugin"
|
|
conf_files="/etc/asound.conf"
|
|
lib32depends="libpulseaudio>=0"
|
|
depends="pulseaudio"
|
|
pkg_install() {
|
|
vmove "usr/lib/alsa-lib/*pulse*"
|
|
vmove "usr/share/alsa/alsa.conf.d/*pulse*"
|
|
vconf ${FILESDIR}/asound.conf
|
|
}
|
|
}
|
|
|
|
alsa-plugins-speex_package() {
|
|
short_desc+=" - Speex resample plugin"
|
|
pkg_install() {
|
|
vmove "usr/lib/alsa-lib/*speex*"
|
|
}
|
|
}
|
|
|
|
alsa-plugins-samplerate_package() {
|
|
short_desc+=" - libsamplerate resample plugin"
|
|
pkg_install() {
|
|
vmove "usr/lib/alsa-lib/*samplerate*"
|
|
}
|
|
}
|
|
|
|
alsa-plugins-ffmpeg_package() {
|
|
short_desc+=" - libavcodec/a52 plugins"
|
|
pkg_install() {
|
|
vmove "usr/lib/alsa-lib/*lavc*"
|
|
vmove "usr/lib/alsa-lib/*a52*"
|
|
}
|
|
}
|