testing/mdevd: new aport

https://skarnet.org/software/mdevd/
A netlink-listening device manager similar to mdev
This commit is contained in:
Laurent Bercot 2018-04-02 23:09:13 +02:00 committed by Jakub Jirutka
parent 9d98b12745
commit 5333ec4645

39
testing/mdevd/APKBUILD Normal file
View File

@ -0,0 +1,39 @@
# Maintainer: Laurent Bercot <ska-devel@skarnet.org>
# Contributor: Laurent Bercot <ska-devel@skarnet.org>
#
# NOTE: For now this APKBUILD is pure mechanism.
# A later version of the APKBUILD will install mdevd as device manager,
# replacing busybox mdev.
pkgname=mdevd
pkgver=0.1.0.1
pkgrel=0
pkgdesc="A netlink-listening device manager similar to mdev"
url="https://skarnet.org/software/mdevd/"
arch="all"
license="ISC"
options="!check" # no tests provided
makedepends="linux-headers skalibs-dev"
subpackages="$pkgname-doc"
source="https://skarnet.org/software/$pkgname/$pkgname-$pkgver.tar.gz"
builddir="$srcdir/$pkgname-$pkgver"
build() {
cd "$builddir"
./configure \
--enable-shared \
--enable-static \
--disable-allstatic
make
}
package() {
cd "$builddir"
make install DESTDIR="$pkgdir"
mkdir -p "$pkgdir"/usr/share/doc
cp -a doc "$pkgdir"/usr/share/doc/$pkgname
}
sha512sums="c2260a90bc99f468ed4f8de06982fdae12bae50f25e3be0c593311b0d5e856d00aca3768fac84089a13065330aa92b21f8e1304dd6d46d76e81e2f0f20f17b3e mdevd-0.1.0.1.tar.gz"