a85db1dc7b
At the moment we have Contributor: lines on some packages (but not all of them), but often they don't represent the actual contributors to the package very well. E.g. when we added them retroactively to the device packages we only added the initial contributor (which isn't necessarily the person who made most of the work for a device...) The Git history is the most representative source for figuring out who contributed to a package, so there is no reason to duplicate that into the APKBUILD. [skip ci]: way too many packages
32 lines
1.2 KiB
Text
32 lines
1.2 KiB
Text
pkgname=firmware-xiaomi-kenzo
|
|
pkgver=1
|
|
pkgrel=2
|
|
_commit="a95bb1dcd92fb301d8e4401679f6c19d93f5875c"
|
|
pkgdesc="Firmware files for Xiaomi Redmi Note 3"
|
|
url="https://postmarketos.org"
|
|
arch="aarch64"
|
|
license="proprietary"
|
|
depends="wcnss-wlan"
|
|
source="$pkgname-$_commit.tar.gz::https://gitlab.com/IdanHoro/vendor_xiaomi_kenzo/-/archive/$_commit/vendor_xiaomi_kenzo-$_commit.tar.gz"
|
|
options="!strip !check !archcheck !spdx"
|
|
builddir="$srcdir/vendor_xiaomi_kenzo-$_commit"
|
|
|
|
_files="wcnss.b00 wcnss.b01 wcnss.b02 wcnss.b04 wcnss.b06
|
|
wcnss.b09 wcnss.b10 wcnss.b11 wcnss.b12 wcnss.mdt"
|
|
_files_prima="WCNSS_wlan_dictionary.dat WCNSS_qcom_cfg.ini WCNSS_qcom_wlan_nv.bin WCNSS_cfg.dat"
|
|
|
|
package() {
|
|
# /lib/firmware/postmarketos
|
|
for _i in $_files; do
|
|
install -D -m644 "$_i" \
|
|
"$pkgdir"/lib/firmware/postmarketos/"$_i"
|
|
done
|
|
|
|
# /lib/firmware/postmarketos/wlan/prima
|
|
for _i in $_files_prima; do
|
|
install -D -m644 wlan/prima/"$_i" \
|
|
"$pkgdir"/lib/firmware/postmarketos/wlan/prima/"$_i"
|
|
done
|
|
}
|
|
|
|
sha512sums="804a69851e13d7ebcc90782b6bf246150327ad4282d67195bb7018bbeae93670e4896a336dadf3bd992110517afd2116df165a132545a0f62072bb6261a7588d firmware-xiaomi-kenzo-a95bb1dcd92fb301d8e4401679f6c19d93f5875c.tar.gz"
|