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
19 lines
733 B
Text
19 lines
733 B
Text
pkgname=firmware-t2m-flame
|
|
pkgver=1
|
|
pkgrel=5
|
|
_commit="503a4052a8bfdc3b4c06533f2d08fe4d6a923842"
|
|
pkgdesc="Mozilla Flame Firmware"
|
|
url="https://github.com/yuvadm/mozilla-flame-firmware"
|
|
arch="armhf"
|
|
license="proprietary"
|
|
source="$pkgname-$_commit.tar.gz::https://github.com/yuvadm/mozilla-flame-firmware/archive/$_commit.tar.gz"
|
|
options="!check !strip !archcheck !spdx"
|
|
builddir="$srcdir/mozilla-flame-firmware-$_commit"
|
|
|
|
package() {
|
|
for _i in *; do
|
|
install -Dm644 "$_i" "$pkgdir"/lib/firmware/postmarketos/"$_i"
|
|
done
|
|
}
|
|
|
|
sha512sums="865c6cb88d44c5305b088db4d244f9e178f2ddd7550c481aadeb6444fd853e004641b8900172ec326a11037aa170a658d32d9e62d0780ee50838e89983178384 firmware-t2m-flame-503a4052a8bfdc3b4c06533f2d08fe4d6a923842.tar.gz"
|