1
0
Fork 0
mirror of https://gitlab.alpinelinux.org/alpine/aports.git synced 2025-07-12 18:59:50 +03:00

testing/bmk: new aport

https://github.com/realchonk/bmk
Successor to make(1) with support for subdirectories
This commit is contained in:
Celeste 2025-06-21 06:24:33 +00:00
parent 30020a664f
commit 0eb26b70a3

29
testing/bmk/APKBUILD Normal file
View file

@ -0,0 +1,29 @@
# Maintainer: Celeste <cielesti@protonmail.com>
maintainer="Celeste <cielesti@protonmail.com>"
pkgname=bmk
pkgver=0.1
pkgrel=0
pkgdesc="Successor to make(1) with support for subdirectories"
url="https://github.com/realchonk/bmk"
arch="all"
license="ISC"
subpackages="$pkgname-doc"
source="https://github.com/realchonk/bmk/archive/refs/tags/$pkgver/bmk-$pkgver.tar.gz"
options="!check" # no tests included
build() {
./configure \
--build=$CBUILD \
--host=$CHOST \
--prefix=/usr \
--mandir=/usr/share/man
make
}
package() {
make DESTDIR="$pkgdir" install
}
sha512sums="
9f763f629910a96d4b89c2426cfaec3ff98ff7cb32d77445429b511ac3378b941d12ee0f5ab7dfe4f8af080a709cc6f9bcc3f3cf1e3a3c812469a6b6a497ddfb bmk-0.1.tar.gz
"