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
24 lines
927 B
Text
24 lines
927 B
Text
pkgname=firmware-samsung-apexq
|
|
pkgver=1
|
|
pkgrel=0
|
|
_commit="f7e14fda78f8b3db294a26e02fade3c77009907c"
|
|
pkgdesc="Samsung Galaxy S Relay 4G Firmware"
|
|
url="https://gitlab.com/5ilver/apexqwififw"
|
|
arch="armhf"
|
|
license="proprietary"
|
|
source="$pkgname-$_commit.tar.gz::$url/-/archive/$_commit/apexqwififw.tar.gz"
|
|
options="!check !strip !archcheck !spdx"
|
|
builddir="$srcdir/apexqwififw-$_commit"
|
|
depends="wcnss-wlan"
|
|
|
|
package() {
|
|
# Wifi
|
|
for file in wcnss.b00 wcnss.b01 wcnss.b02 wcnss.b04 wcnss.b05 wcnss.mdt \
|
|
wlan/prima/WCNSS_qcom_cfg.ini wlan/prima/WCNSS_qcom_wlan_nv.bin_ \
|
|
wlan/prima/WCNSS_qcom_wlan_nv.bin wlan/prima/WCNSS_cfg.dat;
|
|
do
|
|
install -Dm644 "$file" "$pkgdir"/lib/firmware/postmarketos/"$file"
|
|
done
|
|
}
|
|
|
|
sha512sums="cf1b0c7015e38528e5646a0d81a785fd19dae2d044ea1e0e325bcd73caf733ae851ccaedbbdb3260a89de9e34532f1f678f178ed66791ea780c83a80fa47141d firmware-samsung-apexq-f7e14fda78f8b3db294a26e02fade3c77009907c.tar.gz"
|