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
27 lines
764 B
Text
27 lines
764 B
Text
# Reference: <https://postmarketos.org/devicepkg>
|
|
pkgname=device-htc-flounder
|
|
pkgdesc="Google Nexus 9"
|
|
pkgver=0.1
|
|
pkgrel=6
|
|
url="https://postmarketos.org"
|
|
license="gpl-v3"
|
|
arch="aarch64"
|
|
options="!check !archcheck"
|
|
depends="postmarketos-base linux-htc-flounder mkbootimg mesa-dri-swrast"
|
|
makedepends="devicepkg-dev"
|
|
subpackages="$pkgname-nonfree-firmware:nonfree_firmware"
|
|
source="deviceinfo"
|
|
|
|
build() {
|
|
devicepkg_build $startdir $pkgname
|
|
}
|
|
package() {
|
|
devicepkg_package $startdir $pkgname
|
|
|
|
}
|
|
nonfree_firmware() {
|
|
pkgdesc="Firmware"
|
|
depends="linux-firmware-brcm firmware-htc-flounder"
|
|
mkdir "$subpkgdir"
|
|
}
|
|
sha512sums="82a7662ba500a267b86aa8b51468768aa44961c7712e707244db756ca37a7004082c8793e91cbd366dd4665d0c77a50b1b952553dfe5d3a12233df46fcc23da0 deviceinfo"
|