* Set Co-Mainatiner as maintainer, if they exist * Add me as co-maintainer of QEMU packages to fulfill main requirements * Add people interested in maintainance to their packages * device-google-snow now has no maintainer, if someone is interested, please add yourself as maintainer, otherwise it has to be dropped As we all know they are inactive nowadays, the maintainer variables should reflect the reality who cares/is responsible about a package, and inactive members are not. And waiting for a inactive maintainer 2 weeks is just staling the MR. Thanks for all the work Minecrell & Jenneron, and feel free to add yourself again if you're back again. [skip ci]: too many false positives :p Part-of: <https://gitlab.postmarketos.org/postmarketOS/pmaports/-/merge_requests/7748>
29 lines
942 B
Text
29 lines
942 B
Text
# APKBUILD is inspired by Alpine's:
|
|
# https://gitlab.alpinelinux.org/alpine/aports/-/tree/master/main/installkernel
|
|
# Co-Maintainer: Alexey Minnekhanov <alexeymin@postmarketos.org>
|
|
# Co-Maintainer: Achill Gilgenast <achill@achill.org>
|
|
maintainer="Aelin <aelin@postmarketos.org>"
|
|
pkgname=postmarketos-installkernel
|
|
pkgver=0.1
|
|
pkgrel=4
|
|
pkgdesc="postmarketOS script for installing mainline kernels"
|
|
url="https://gitlab.postmarketos.org/postmarketOS/pmaports/tree/main/postmarketos-installkernel"
|
|
arch="noarch"
|
|
license="GPL-2.0"
|
|
options="!check" # no test suite
|
|
provides="installkernel=3.5-r1"
|
|
provider_priority=100
|
|
replaces="installkernel"
|
|
source="installkernel-pmos"
|
|
|
|
build() {
|
|
return 0
|
|
}
|
|
|
|
package() {
|
|
install -Dm755 "$srcdir"/installkernel-pmos "$pkgdir"/sbin/installkernel
|
|
}
|
|
|
|
sha512sums="
|
|
ba3bdb2d27f7b866a49354fcc4b83ec85747a71265c6b585cb062fc1ff00e88faeba7b77f463d6699e81685c8927ee1d316d5934f374aeebfd4949007d8cb4d8 installkernel-pmos
|
|
"
|