mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-03-09 07:32:35 +01:00
26 lines
617 B
Plaintext
26 lines
617 B
Plaintext
# Contributor: TBK <alpine@jjtc.eu>
|
|
# Maintainer: TBK <alpine@jjtc.eu>
|
|
pkgname=multirun
|
|
pkgver=0.3.1
|
|
pkgrel=0
|
|
pkgdesc="A minimalist init process designed for Docker."
|
|
url="https://nicolas-van.github.io/multirun/"
|
|
arch="all"
|
|
license="MIT"
|
|
checkdepends="bats"
|
|
source="$pkgname-$pkgver.tar.gz::https://github.com/nicolas-van/multirun/archive/$pkgver.tar.gz"
|
|
|
|
build() {
|
|
make
|
|
}
|
|
|
|
check() {
|
|
bats tests.bats
|
|
}
|
|
|
|
package() {
|
|
make DESTDIR="$pkgdir" install
|
|
}
|
|
|
|
sha512sums="0a55470077b2bc2559e94f608f9ed53194512b5eca14eb62fffacd52123fa5335e28b85333c24039881f43fd56ac8f06ece0a13c495898faee830e8674b380ad multirun-0.3.1.tar.gz"
|