4724b0f9c1
Right now we have all firmware packages under firmware/*. This is problematic for mainly two reasons: - It's not immediately clear which firmware packages we need to keep when forking a new stable branch. (Where we delete testing devices at the moment...) We might end up deleting firmware packages that are actually used by one of the devices in community. - When backporting devices to the stable we cannot just cherry-pick the commit that moved the device to community (since it does not contain the firmware package). Instead we need to cherry-pick earlier commits as well, which may touch a lot of deleted files in the testing directory. Let's make this consistent by also placing the firmware packages in the device/* directory. We already have the common firmware- prefix to distinguish them from device/kernel packages, which are already both under the device/* directory.
23 lines
906 B
Text
23 lines
906 B
Text
pkgname=firmware-pine64-rtl8723bt
|
|
pkgver=0_git20181104
|
|
pkgrel=0
|
|
pkgdesc="Firmware for rtl8723bs and rtl8723cs"
|
|
url="https://github.com/anarsoul/rtl8723bt-firmware/"
|
|
subpackages="$pkgname-doc"
|
|
arch="aarch64"
|
|
license="proprietary"
|
|
options="!check !strip !archcheck"
|
|
_commit="39da5959deff5041160fa85e62dddb89066471b3"
|
|
source="$pkgname-$_commit.tar.gz::https://github.com/anarsoul/rtl8723bt-firmware/archive/$_commit.tar.gz"
|
|
builddir="$srcdir/rtl8723bt-firmware-$_commit"
|
|
|
|
package() {
|
|
make DESTDIR="$pkgdir" install
|
|
|
|
# Not sure why this gets installed. Weird.
|
|
rm "$pkgdir"/lib/firmware/Makefile
|
|
|
|
install -Dm644 LICENCE.rtlwifi_firmware.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
|
|
}
|
|
|
|
sha512sums="8c25196e68eca60e9c14d77a472335187706b1fa0a98da8b3c5afd4d08ea8d430b0ae3187080901bd6917531914096b18fe7e69c048a05140d44cd8689c941fb firmware-pine64-rtl8723bt-39da5959deff5041160fa85e62dddb89066471b3.tar.gz"
|