aports/testing/please/APKBUILD
2023-05-23 23:53:07 +02:00

53 lines
1.8 KiB
Plaintext

# Contributor: Ed Neville <ed@s5h.net>
# Maintainer: Ed Neville <ed@s5h.net>
pkgname=please
pkgver=0.4.2
pkgrel=2
pkgdesc="sudo alternative with regex support"
url="https://gitlab.com/edneville/please"
arch="all !s390x !riscv64" # limited by rust/cargo
license="GPL-3.0-or-later"
makedepends="cargo linux-pam-dev chrpath cargo-auditable"
source="https://gitlab.com/edneville/please/-/archive/v$pkgver/please-v$pkgver.tar.gz
please.pam
"
options="suid" # Required to call setuid with target uids
builddir="$srcdir/$pkgname-v$pkgver"
subpackages="$pkgname-doc"
build() {
cargo auditable build --release --locked
}
check() {
cargo test --locked
}
doc() {
default_doc
}
package() {
install -Dm4755 target/release/please "$pkgdir/usr/bin/please"
install -Dm4755 target/release/pleaseedit "$pkgdir/usr/bin/pleaseedit"
chrpath -d "$pkgdir"/usr/bin/please*
cp "$builddir/man/please.1" "$builddir/man/pleaseedit.1"
install -Dm644 "$builddir/man/please.1" "$pkgdir/usr/share/man/man1/please.1"
install -Dm644 "$builddir/man/pleaseedit.1" "$pkgdir/usr/share/man/man1/pleaseedit.1"
install -Dm644 "$builddir/man/please.ini.5" "$pkgdir/usr/share/man/man5/please.ini.5"
install -Dm644 "$builddir/examples/please.ini" "$pkgdir/usr/share/doc/$pkgname/please.ini"
install -Dm644 "$builddir/README.md" "$pkgdir/usr/share/doc/$pkgname/README.md"
mkdir -p "$pkgdir/etc/pam.d"
for pamf in please pleaseedit; do
install -Dm0644 "$srcdir/please.pam" "$pkgdir/etc/pam.d/$pamf"
done
}
sha512sums="
38958b3a1a249124d0bc9d49cec96c252091a1adb96082a2af8784ee418efce368e0c8892eefb256ecc9b701e76f26aa5d94f1c504345d8a48721a3f254c172b please-v0.4.2.tar.gz
23a3da8a8d896cbbaa6100c045b8ec07e0808f5244187b6b448d0d9b48d933645fd305fd085ea3e241cc4a4b634d988b40c534e9408196710ce416771f4b5fa7 please.pam
"