mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-04-09 07:41:58 +02:00
41 lines
1.1 KiB
Plaintext
41 lines
1.1 KiB
Plaintext
# Contributor: Christian Kampka <christian@kampka.net>
|
|
# Maintainer: Laurent Bercot <ska-devel@skarnet.org>
|
|
pkgname=s6-linux-utils
|
|
pkgver=2.6.2.0
|
|
pkgrel=3
|
|
pkgdesc="A set of tiny Linux-specific utilities optimized for simplicity and small size."
|
|
url=https://skarnet.org/software/s6-linux-utils/
|
|
arch="all"
|
|
license="ISC"
|
|
options="!check"
|
|
makedepends="skalibs-dev>=2.14 linux-headers"
|
|
subpackages="$pkgname-doc"
|
|
source="https://skarnet.org/software/s6-linux-utils/s6-linux-utils-$pkgver.tar.gz"
|
|
|
|
build() {
|
|
./configure \
|
|
--enable-shared \
|
|
--enable-static \
|
|
--disable-allstatic \
|
|
--prefix=/usr \
|
|
--libdir=/usr/lib \
|
|
--enable-multicall
|
|
make
|
|
}
|
|
|
|
package() {
|
|
make DESTDIR="$pkgdir" install
|
|
rm "$pkgdir"/usr/include/s6-linux-utils/config.h
|
|
rmdir -p "$pkgdir"/usr/include/s6-linux-utils || :
|
|
}
|
|
|
|
doc() {
|
|
default_doc
|
|
mkdir -p "$subpkgdir/usr/share/doc"
|
|
cp -a "$builddir/doc" "$subpkgdir/usr/share/doc/$pkgname"
|
|
}
|
|
|
|
sha512sums="
|
|
b7bc96ef3aa81bc01c6ca2a82591201be0966d8aa2b71545c963f67dba8441a05631e0ea593f0a693ee04d6d2637754e9543eddbfe70ed9c0529ff49081aa54d s6-linux-utils-2.6.2.0.tar.gz
|
|
"
|