71 lines
2.3 KiB
Makefile
71 lines
2.3 KiB
Makefile
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
# Copyright (C) 2009-2016 Stephan Raue (stephan@openelec.tv)
|
|
|
|
PKG_NAME="bluez"
|
|
PKG_VERSION="5.50"
|
|
PKG_SHA256="c44b776660bf78e664e388b979da152976296e444dece833f3ddbd5be5a3b1b4"
|
|
PKG_LICENSE="GPL"
|
|
PKG_SITE="http://www.bluez.org/"
|
|
PKG_URL="https://git.kernel.org/pub/scm/bluetooth/bluez.git/snapshot/$PKG_NAME-$PKG_VERSION.tar.gz"
|
|
PKG_DEPENDS_TARGET="toolchain dbus glib readline systemd"
|
|
PKG_LONGDESC="Bluetooth Tools and System Daemons for Linux."
|
|
PKG_TOOLCHAIN="autotools"
|
|
PKG_BUILD_FLAGS="+lto"
|
|
|
|
if build_with_debug; then
|
|
BLUEZ_CONFIG="--enable-debug"
|
|
else
|
|
BLUEZ_CONFIG="--disable-debug"
|
|
fi
|
|
|
|
BLUEZ_CONFIG="$BLUEZ_CONFIG --enable-monitor --enable-test"
|
|
|
|
PKG_CONFIGURE_OPTS_TARGET="--disable-dependency-tracking \
|
|
--disable-silent-rules \
|
|
--disable-library \
|
|
--enable-udev \
|
|
--disable-cups \
|
|
--disable-obex \
|
|
--enable-client \
|
|
--enable-systemd \
|
|
--enable-tools --enable-deprecated \
|
|
--enable-datafiles \
|
|
--disable-experimental \
|
|
--enable-sixaxis \
|
|
--with-gnu-ld \
|
|
$BLUEZ_CONFIG \
|
|
storagedir=/storage/.cache/bluetooth"
|
|
|
|
pre_configure_target() {
|
|
# bluez fails to build in subdirs
|
|
cd $PKG_BUILD
|
|
rm -rf .$TARGET_NAME
|
|
|
|
export LIBS="-lncurses"
|
|
}
|
|
|
|
post_makeinstall_target() {
|
|
rm -rf $INSTALL/usr/lib/systemd
|
|
rm -rf $INSTALL/usr/bin/bccmd
|
|
rm -rf $INSTALL/usr/bin/bluemoon
|
|
rm -rf $INSTALL/usr/bin/ciptool
|
|
rm -rf $INSTALL/usr/share/dbus-1
|
|
|
|
mkdir -p $INSTALL/etc/bluetooth
|
|
cp src/main.conf $INSTALL/etc/bluetooth
|
|
sed -i $INSTALL/etc/bluetooth/main.conf \
|
|
-e "s|^#\[Policy\]|\[Policy\]|g" \
|
|
-e "s|^#AutoEnable.*|AutoEnable=true|g"
|
|
|
|
mkdir -p $INSTALL/usr/share/services
|
|
cp -P $PKG_DIR/default.d/*.conf $INSTALL/usr/share/services
|
|
|
|
# bluez looks in /etc/firmware/
|
|
ln -sf /usr/lib/firmware $INSTALL/etc/firmware
|
|
}
|
|
|
|
post_install() {
|
|
enable_service bluetooth-defaults.service
|
|
enable_service bluetooth.service
|
|
enable_service obex.service
|
|
}
|