32 lines
803 B
Plaintext
32 lines
803 B
Plaintext
# Description: Bluetooth Audio ALSA Backend (for users in "audio" group)
|
|
# URL: https://github.com/Arkq/bluez-alsa
|
|
# Maintainer: Steffen Nurpmeso, steffen at sdaoden dot eu
|
|
# Depends on: bluez fdk-aac sbc
|
|
|
|
#@ .. via bluez: alsa-lib dbus
|
|
|
|
name=bluealsa
|
|
rname=bluez-alsa
|
|
version=3.0.0
|
|
release=3
|
|
source=(
|
|
https://github.com/Arkq/${rname}/archive/\
|
|
v${version}/${rname}-${version}.tar.gz
|
|
bluealsa.rc bluealsa.conf)
|
|
|
|
build() {
|
|
cd ${rname}-${version}
|
|
|
|
autoreconf --install --symlink
|
|
mkdir build && cd build
|
|
../configure --prefix=/usr --runstatedir=/run --enable-aac
|
|
make all
|
|
make DESTDIR="${PKG}" install
|
|
|
|
install -D -m 0755 "${SRC}"/bluealsa.rc "${PKG}"/etc/rc.d/${name}
|
|
install -D -m 0644 "${SRC}"/bluealsa.conf \
|
|
"${PKG}"/etc/dbus-1/system.d/${name}.conf
|
|
}
|
|
|
|
# s-sh-mode
|