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
29 lines
768 B
Text
29 lines
768 B
Text
# Reference: <https://postmarketos.org/devicepkg>
|
|
pkgname=device-xiaomi-mido
|
|
pkgdesc="Xiaomi Redmi Note 4"
|
|
pkgver=0.1
|
|
pkgrel=4
|
|
url="https://postmarketos.org"
|
|
license="MIT"
|
|
arch="aarch64"
|
|
options="!check !archcheck"
|
|
depends="postmarketos-base linux-xiaomi-mido mkbootimg mesa-dri-swrast mdss-fb-init-hack"
|
|
makedepends="devicepkg-dev"
|
|
subpackages="$pkgname-nonfree-firmware:nonfree_firmware"
|
|
source="deviceinfo"
|
|
|
|
build() {
|
|
devicepkg_build $startdir $pkgname
|
|
}
|
|
|
|
package() {
|
|
devicepkg_package $startdir $pkgname
|
|
}
|
|
|
|
nonfree_firmware() {
|
|
pkgdesc="Wifi firmware"
|
|
depends="firmware-xiaomi-mido"
|
|
mkdir "$subpkgdir"
|
|
}
|
|
|
|
sha512sums="6a0cf6a6a991ecc33734eecd3ffa5c98876f922c356a2363ad9bd3166d94b782fa67b4e9cafa23f55c2e31e38385be49d8f8e05d7aa5834a2f85b36d70de749f deviceinfo"
|