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
30 lines
866 B
Text
30 lines
866 B
Text
# Maintainer: Jean-Etienne Tremblay <jean.etienne.tremblay@gmail.com>
|
|
# Reference: <https://postmarketos.org/devicepkg>
|
|
pkgname=device-motorola-channel
|
|
pkgdesc="Motorola G7 Play"
|
|
pkgver=0.1
|
|
pkgrel=0
|
|
url="https://postmarketos.org"
|
|
license="MIT"
|
|
arch="aarch64"
|
|
subpackages="$pkgname-nonfree-firmware:nonfree_firmware"
|
|
options="!check !archcheck"
|
|
depends="postmarketos-base linux-motorola-channel mkbootimg mesa-dri-swrast msm-fb-refresher"
|
|
makedepends="devicepkg-dev"
|
|
source="deviceinfo"
|
|
|
|
build() {
|
|
devicepkg_build $startdir $pkgname
|
|
}
|
|
|
|
package() {
|
|
devicepkg_package $startdir $pkgname
|
|
}
|
|
|
|
nonfree_firmware() {
|
|
pkgdesc="Wifi firmware"
|
|
depends="firmware-motorola-channel-wcnss wcnss-wlan"
|
|
mkdir "$subpkgdir"
|
|
}
|
|
|
|
sha512sums="4625074160c5b32fa244250f1c3c608134258fa81722c1ffc2dd0862644d09474b436bdc277fab878e8e3ff1ccbc33e446fa0b33358960a150e70f0063742370 deviceinfo"
|