blob: 683c82e17d87c4a79ddc7b84f86f5a88cc30fc8a (
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
|
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=linux-headers
pkgver=3.2.7
_kernver=3.2
pkgrel=0
pkgdesc="Linux system headers"
url="http://kernel.org"
arch="noarch"
license='GPL-2'
makedepends="perl"
if [ "$ALPINE_LIBC" = "eglibc" ]; then
replaces="eglibc-dev"
else
replaces="uclibc-dev"
fi
options="!strip !tracedeps"
source="ftp://ftp.kernel.org/pub/linux/kernel/v3.x/linux-$_kernver.tar.bz2
ftp://ftp.kernel.org/pub/linux/kernel/v3.x/patch-$pkgver.bz2
"
prepare() {
cd "$srcdir"/linux-$_kernver
if [ "$_kernver" != "$pkgver" ]; then
bunzip2 -c < "$srcdir"/patch-$pkgver.bz2 | patch -p1 || return 1
fi
}
build() {
return 0
}
package() {
cd "$srcdir"/linux-$_kernver
mkdir -p "$pkgdir/usr"
make headers_install INSTALL_HDR_PATH="$pkgdir/usr" || return 1
find "$pkgdir/usr" \( -name .install -o -name ..install.cmd \) -exec \
rm -f {} \;
# provided by libdrm
rm -rf "$pkgdir"/usr/include/drm
}
md5sums="7ceb61f87c097fc17509844b71268935 linux-3.2.tar.bz2
899624bffed6a19578613b672cc9483f patch-3.2.7.bz2"
|