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
36 lines
1.2 KiB
Text
36 lines
1.2 KiB
Text
# Maintainer: Lauren Kelly <lauren.kelly@msn.com>
|
|
pkgname=firmware-alcatel-pop7lte
|
|
pkgver=1
|
|
pkgrel=0
|
|
_commit="0f0e5d3036d0554e967ddca84708c2717cae83a6"
|
|
pkgdesc="Firmware files for Alcatel OneTouch Pop 7S"
|
|
url="https://postmarketos.org"
|
|
subpackages="$pkgname-adsp $pkgname-wcnss"
|
|
arch="armv7"
|
|
license="proprietary"
|
|
source="$pkgname-$_commit.tar.gz::https://github.com/thejsa/vendor_alcatel_pop7lte/archive/$_commit.tar.gz"
|
|
|
|
options="!check !strip !archcheck !spdx"
|
|
builddir="$srcdir/vendor_alcatel_pop7lte-$_commit"
|
|
|
|
_fwdir="/lib/firmware/postmarketos"
|
|
|
|
package() {
|
|
# parent package is empty
|
|
mkdir -p "$pkgdir"
|
|
}
|
|
|
|
adsp() {
|
|
depends="adsp-audio"
|
|
pkgdesc="Alcatel OneTouch Pop 7S (pop7lte) audio firmware"
|
|
install -Dm644 "$builddir"/adsp.* -t "$subpkgdir/$_fwdir"
|
|
}
|
|
|
|
wcnss() {
|
|
depends="wcnss-wlan"
|
|
pkgdesc="Alcatel OneTouch Pop 7S (pop7lte) WiFi/BT firmware"
|
|
install -Dm644 "$builddir"/wcnss.* -t "$subpkgdir/$_fwdir"
|
|
install -Dm644 "$builddir"/wlan/prima/WCNSS_* -t "$subpkgdir/$_fwdir"/wlan/prima
|
|
}
|
|
|
|
sha512sums="739fb907606a246cef8084079ea58a5836e3d93d53a38e4e8b5e6f1e458d3dea542b90cf3f7bd647399d4eeab8578f195e8c7b384e90da6bf677aecb391b091c firmware-alcatel-pop7lte-0f0e5d3036d0554e967ddca84708c2717cae83a6.tar.gz"
|