* Also move right above pkgname= * Move Co-Maintainer lines above maintainer= * Remove empty lines in the header pmbootstrap 3.7+ & abuild supports maintainer= variables. See also https://gitlab.alpinelinux.org/alpine/tsc/-/issues/88 [ci:skip-build]: no pkgver/pkgrel changes [ci:ignore-count]: intended [ci:skip-vercheck]: no functional changes [skip ci]: false positives Part-of: <https://gitlab.postmarketos.org/postmarketOS/pmaports/-/merge_requests/7723>
28 lines
679 B
Text
28 lines
679 B
Text
# Reference: https://postmarketos.org/uipkg
|
|
maintainer="Clayton Craft <clayton@craftyguy.net>"
|
|
pkgname=postmarketos-ui-console
|
|
pkgver=0.1
|
|
pkgrel=10
|
|
pkgdesc="Console environment, with no graphical/touch UI"
|
|
url="https://postmarketos.org/"
|
|
arch="noarch"
|
|
license="GPL-3.0-or-later"
|
|
depends="
|
|
dnsmasq
|
|
postmarketos-base-ui
|
|
postmarketos-base-ui-networkmanager
|
|
wireless-tools
|
|
"
|
|
options="!check pmb:systemd" # No testsuite
|
|
subpackages="$pkgname-openrc:_openrc"
|
|
|
|
package() {
|
|
mkdir -p "$pkgdir"
|
|
}
|
|
|
|
_openrc() {
|
|
install_if="$pkgname=$pkgver-r$pkgrel openrc"
|
|
install="$subpkgname.post-install $subpkgname.post-upgrade"
|
|
depends="networkmanager-openrc openrc"
|
|
mkdir -p "$subpkgdir"
|
|
}
|