blob: 65e52722c48b8bac55321bbfe2bd1affa93064a1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
# Contributor: Natanael Copa <ncopa@alpinelinux.org>
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=kmod
pkgver=14
pkgrel=0
pkgdesc="Linux kernel module management utilities"
url="http://git.kernel.org/?p=utils/kernel/kmod/kmod.git;a=summary"
arch="all"
license="GPLv2+"
depends=""
depends_dev=""
makedepends="$depends_dev zlib-dev xz-dev libxslt"
install=""
subpackages="$pkgname-dev $pkgname-doc $pkgname-libs"
source="http://ftp.kernel.org/pub/linux/utils/kernel/kmod/kmod-$pkgver.tar.xz"
_builddir="$srcdir"/kmod-$pkgver
prepare() {
local i
cd "$_builddir"
for i in $source; do
case $i in
*.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;;
esac
done
}
build() {
cd "$_builddir"
./configure --bindir=/bin \
--with-rootlibdir=/lib \
--with-zlib \
--with-xz \
|| return 1
make || return 1
}
package() {
cd "$_builddir"
make DESTDIR="$pkgdir" install || return 1
rm -f "$pkgdir"/usr/lib/*.la
}
libs() {
pkgdesc="Libraries to handle kernel module loading and unloading"
mkdir -p "$subpkgdir"/
mv "$pkgdir"/lib "$subpkgdir"/
}
md5sums="38009d0d6f10678a3ec22ccd29210d13 kmod-14.tar.xz"
sha256sums="1f54abb63ba3642277ae1af3626c0896b102a915c4d8b9eb5005ae0afe6e7174 kmod-14.tar.xz"
sha512sums="ab5001b6ce6ea832acbb6a01ba2cc9d1fdb90667df456aa78ad137a35d5ee1580e0b2a36d34e472718c08d2ab3495fa47c638868b032cc90237910fb626bf7f7 kmod-14.tar.xz"
|