X-Original-To: alpine-aports@lists.alpinelinux.org Received: from bradso.to (bradso.to [23.111.74.240]) by lists.alpinelinux.org (Postfix) with ESMTP id 1367DF8317A for ; Mon, 8 Jul 2019 06:29:42 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=bradso.to; s=2019; h=Content-Transfer-Encoding:MIME-Version:Message-Id:Date:Subject:Cc: To:From:Sender:Reply-To:Content-Type:Content-ID:Content-Description: Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID: In-Reply-To:References:List-Id:List-Help:List-Unsubscribe:List-Subscribe: List-Post:List-Owner:List-Archive; bh=3fqnb0WAKki3VQJYjSDGyopb4wRYYvxOuGAPFdgQ5sw=; b=qmFla6mUC0zhD5PQy6Z0TQqA5t aVTAfJIVMp0GoH3eQrTBw0FEDGVZKwhxh8W9kS5tedkxkyyHwIJ9YNyPBtKtdn/TJm6owJXsx+GFM ZYBruYS9EdFXwWqhqqTu/tGQP9r+ZBLT3Dk7rUGpNYcHz+tU286Uga7ND67Z9y0X5PZ6FCkNQGcem 60F2f68b75yswKhfzrEe1Wn0r3sxKYCgMUwmhTjZ2M/boQEjEfUeZ8siig0AmjB2g8C0IVafeG8/0 0+SCgWgtG5xan8pMxGV1bYi7mSPoh7B+Epl3K4GiOO+d1mxZuoCkDbx+87Sof6Vqw8DrAXhhkeZOo e/jhHt0A==; Received: from [192.168.168.170] (port=57034 helo=laptop.bradso.to) by bradso.to with esmtp (Exim 4.92) (envelope-from <~@bradso.to>) id 1hkNAI-0006G1-LX; Mon, 08 Jul 2019 00:30:18 -0600 From: Bradley Saulteaux <~@bradso.to> To: alpine-aports@lists.alpinelinux.org Cc: Bradley Saulteaux <-@bradso.to> Subject: [alpine-aports] [PATCH] testing/bluez-alsa: new aport Date: Mon, 8 Jul 2019 00:29:39 -0600 Message-Id: <20190708062939.5140-1-~@bradso.to> X-Mailer: git-send-email 2.22.0 X-Mailinglist: alpine-aports Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit From: Bradley Saulteaux <-@bradso.to> https://github.com/Arkq/bluez-alsa Bluetooth Audio ALSA Backend --- testing/bluez-alsa/APKBUILD | 25 +++++++++++++++++++++++++ testing/bluez-alsa/bluealsa.initd | 7 +++++++ 2 files changed, 32 insertions(+) create mode 100644 testing/bluez-alsa/APKBUILD create mode 100755 testing/bluez-alsa/bluealsa.initd diff --git a/testing/bluez-alsa/APKBUILD b/testing/bluez-alsa/APKBUILD new file mode 100644 index 0000000000..9df5c30c9c --- /dev/null +++ b/testing/bluez-alsa/APKBUILD @@ -0,0 +1,25 @@ +# Maintainer: Bradley Saulteaux <-@bradso.to> +pkgname="bluez-alsa" +pkgver=1.4.0 +pkgrel=0 +pkgdesc="Bluetooth Audio ALSA Backend" +url="https://github.com/Arkq/bluez-alsa" +arch="all" +license="MIT" +depends="bluez" +makedepends="automake autoconf libtool alsa-lib-dev bluez-dev glib-dev sbc-dev" +source="${pkgname}-${pkgver}.tar.gz::https://github.com/Arkq/$pkgname/archive/v$pkgver.tar.gz + bluealsa.initd" +build() { + autoreconf --install + mkdir build && cd build + ../configure --enable-ofono + make +} +package() { + cd build + make DESTDIR="$pkgdir" install + install -Dm755 ../../bluealsa.initd "$pkgdir"/etc/init.d/bluealsa +} +sha512sums="fa4ad21c7b9ac200cdc7628bf0276bbb0beac94066a6c5e69c47a5286f6e13a7dc61caab23acbb14a37c2b97894c425052a09adb8f967038f6fd99557208629f bluez-alsa-1.4.0.tar.gz +7952c75a47ef8bbbd9ea7c8f16e62ff6355db4011a4c3a7c9d084c740cebde945bb443a987169a8e314d422958288fd02704a25d28c9770fcb8a2c050530ab26 bluealsa.initd" diff --git a/testing/bluez-alsa/bluealsa.initd b/testing/bluez-alsa/bluealsa.initd new file mode 100755 index 0000000000..01b6d82688 --- /dev/null +++ b/testing/bluez-alsa/bluealsa.initd @@ -0,0 +1,7 @@ +#!/sbin/openrc-run +depend() { + need bluetooth +} +command="/usr/bin/$RC_SVCNAME" +command_background="yes" +pidfile="/run/$RC_SVCNAME.pid" -- 2.22.0 --- Unsubscribe: alpine-aports+unsubscribe@lists.alpinelinux.org Help: alpine-aports+help@lists.alpinelinux.org ---