diff options
author | Sonic-Y3k | 2015-10-10 12:13:24 +0200 |
---|---|---|
committer | Sonic-Y3k | 2015-10-10 12:13:24 +0200 |
commit | 4b0c1ec683e27b6de125a15cf1b3a16e081dd605 (patch) | |
tree | 3b40f2bc566603111c9b881bebf12852ee4b89ba | |
download | aur-4b0c1ec683e27b6de125a15cf1b3a16e081dd605.tar.gz |
Initial import
-rw-r--r-- | .SRCINFO | 14 | ||||
-rw-r--r-- | PKGBUILD | 25 |
2 files changed, 39 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO new file mode 100644 index 000000000000..83eead401170 --- /dev/null +++ b/.SRCINFO @@ -0,0 +1,14 @@ +pkgbase = bcm20702a1-firmware + pkgdesc = Firmware for BCM20702A1 based ASUS X99 USB bluetooth devices (0b05:17cf) + pkgver = 1201550 + pkgrel = 1 + url = http://linuxtv.org/wiki/index.php/Afatech_AF9005 + arch = any + license = Custom + makedepends = hex2hcd + provides = linux-firmware + source = http://dlm3cdnet.asus.com/pub/ASUS/misc/BT/Bluetooth_V1201550_Win10.zip + sha256sums = fe1efb02a5779f67ffecce79d44622e7e2795a9b31352e0f490f63bb471a78d1 + +pkgname = bcm20702a1-firmware + diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 000000000000..a12b9dcbbdcd --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,25 @@ +# Maintainer: Sonic-Y3k <sonic.y3k@googlemail.com> + +pkgname=bcm20702a1-firmware +pkgver=1201550 +pkgrel=1 +pkgdesc="Firmware for BCM20702A1 based ASUS X99 USB bluetooth devices (0b05:17cf)" +arch=(any) +url="http://linuxtv.org/wiki/index.php/Afatech_AF9005" +license=("Custom") +makedepends=('hex2hcd') +source=("http://dlm3cdnet.asus.com/pub/ASUS/misc/BT/Bluetooth_V${pkgver}_Win10.zip") +sha256sums=('fe1efb02a5779f67ffecce79d44622e7e2795a9b31352e0f490f63bb471a78d1') +provides=('linux-firmware') + +build() { + cd "${srcdir}" + cp "${srcdir}/Bluetooth_V1201550_Win10/Win32/BCM20702A1_001.002.014.1443.1469.hex" "${srcdir}/" + hex2hcd "${srcdir}/BCM20702A1_001.002.014.1443.1469.hex" "${srcdir}/BCM20702A1-0b05-17cf.hcd" +} + +package() { + mkdir -p ${pkgdir}/usr/lib/firmware/brcm + install -m644 "${srcdir}/BCM20702A1-0b05-17cf.hcd" "${pkgdir}/usr/lib/firmware/brcm/BCM20702A1-0b05-17cf.hcd" +} + |