pmaports/main/reboot-mode/APKBUILD
Aster Boese 29afb81ed2
main/reboot-mode: swap maintainer
The maintainer has stated that they don't want to
maintain this package anymore, so drop their name
from the line. Add the new maintainer that asked
to be added in the dropping MR.

See:
https://gitlab.postmarketos.org/postmarketOS/pmaports/-/work_items/4714#note_570656

Signed-off-by: Aster Boese <asterboese@mailbox.org>
Part-of: <https://gitlab.postmarketos.org/postmarketOS/pmaports/-/merge_requests/9097>
2026-07-22 15:38:32 +00:00

23 lines
720 B
Text

maintainer="Stefan Hansson (@Newbyte) <newbyte@postmarketos.org>"
pkgname=reboot-mode
pkgver=1.0.0
pkgrel=1
pkgdesc="Reboot the device to a specific mode"
url="https://postmarketos.org"
arch="all"
license="GPL-3.0-or-later"
makedepends="musl-dev linux-headers"
source="https://gitlab.com/postmarketos/reboot-mode/-/archive/$pkgver/reboot-mode-$pkgver.tar.gz"
options="!check" # No tests
build() {
gcc reboot-mode.c -o reboot-mode.o -c
gcc reboot-mode.o -o reboot-mode
}
package() {
install -Dm755 reboot-mode \
"$pkgdir"/usr/sbin/reboot-mode
}
sha512sums="926fae6f1b78b144f092d291f1d0edf58f2a5ea98d3af7aa812f4f1e1330002feb5a8c4499fe334e6d22bc515467359a5a0651e3995d2217a844f3c1b668ae9b reboot-mode-1.0.0.tar.gz"