mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 18:07:14 +08:00
26 lines
515 B
Bash
26 lines
515 B
Bash
#
|
|
# Chakra Package
|
|
#
|
|
# Drake Justice <djustice@chakra-linux.org>
|
|
|
|
pkgname=bluez-firmware
|
|
pkgver=1.2
|
|
pkgrel=6
|
|
pkgdesc="Firmware for Broadcom BCM203x and STLC2300 Bluetooth chips"
|
|
url="http://www.bluez.org/"
|
|
arch=('any')
|
|
license=('GPL2')
|
|
source=("http://bluez.sf.net/download/${pkgname}-${pkgver}.tar.gz")
|
|
md5sums=('1cc3cefad872e937e05de5a0a2b390dd')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
|
|
./configure --prefix=/usr
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
make DESTDIR="$pkgdir" install
|
|
}
|