* 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>
50 lines
920 B
Text
50 lines
920 B
Text
maintainer=""
|
|
pkgname=soc-qcom-sc8180x
|
|
pkgdesc="Common package for Qualcomm 8cx devices"
|
|
pkgver=1
|
|
pkgrel=4
|
|
url="https://postmarketos.org"
|
|
license="BSD-3-Clause"
|
|
arch="aarch64"
|
|
options="!check !archcheck !tracedeps"
|
|
subpackages="
|
|
$pkgname-nonfree-firmware:nonfree_firmware
|
|
$pkgname-nonfree-firmware-openrc:nonfree_firmware_openrc
|
|
$pkgname-vulkan
|
|
"
|
|
|
|
package() {
|
|
mkdir -p "$pkgdir"
|
|
}
|
|
|
|
nonfree_firmware() {
|
|
pkgdesc="Modem, WiFi and GPU Firmware"
|
|
depends="
|
|
qrtr
|
|
pd-mapper
|
|
tqftpserv
|
|
rmtfs
|
|
"
|
|
mkdir "$subpkgdir"
|
|
}
|
|
|
|
nonfree_firmware_openrc() {
|
|
install_if="$pkgname-nonfree-firmware=$pkgver-r$pkgrel openrc"
|
|
install="$subpkgname.post-install $subpkgname.post-upgrade"
|
|
depends="
|
|
openrc
|
|
pd-mapper-openrc
|
|
rmtfs-openrc
|
|
tqftpserv-openrc
|
|
"
|
|
|
|
mkdir "$subpkgdir"
|
|
}
|
|
|
|
vulkan() {
|
|
pkgdesc="Vulkan support for freedreno"
|
|
install_if="$pkgname vulkan-loader"
|
|
depends="mesa-vulkan-freedreno"
|
|
mkdir "$subpkgdir"
|
|
}
|
|
|