blob: a65d1198127f748d0b733666b6e58044d69daee1 (
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
53
54
55
56
57
58
59
60
61
62
|
# $Id: PKGBUILD 5849 2008-07-21 18:46:34Z thomas $
# Maintainer: Aaron Griffin <aaron@archlinux.org>
# Maintainer: Thomas Baechler <thomas@archlinux.org>
###
### NOTE: Do not build this package with anything except gcc - using ccache
### forces others to use it as well as it becomes hardcoded in the klibc
### script.
###
pkgname=klibc
pkgver=1.5
_klibcbranch=Stable #Stable/Testing
_kver=2.6.26-ARCH
pkgrel=15
pkgdesc="A minimal libc made for early-userspace"
arch=(i686 x86_64)
url="http://www.kernel.org/pub/linux/libs/klibc/"
license=('BSD')
groups=('base')
options=(!ccache !strip)
source=(http://www.kernel.org/pub/linux/libs/klibc/$_klibcbranch/$pkgname-$pkgver.tar.gz
multiple_raid_assembly_fix.patch
klibc-compile-shared-by-default.patch
klibc-module-init-tools.patch
klibc-2.6.24.patch
klibc-Kbuild.patch)
md5sums=('d55ce89c0656a7d6896ec0b2af07b5dc'
'8d257d50a4554d57b8f461c6a87a2877'
'c263a7c3fd290fcc84a4e230d456d022'
'4d78311ebce63f2fbb711f8518e71839'
'a98b3e96aff53339572ed0bdccc8aed2'
'c928be0153585a487b72a7eb5dfa8b13')
build()
{
cd $startdir/src/$pkgname-$pkgver
#INI_DEBUG causes ipconfig to fail within kinit
sed -i "/#define INI_DEBUG/d" usr/kinit/kinit.h || return 1
ln -sf /usr/src/linux-${_kver} linux
patch -p1 -i ../multiple_raid_assembly_fix.patch || return 1
# make klibc-module-init-tools compile
# don't build insmod
patch -p1 -i ../klibc-module-init-tools.patch || return 1
# compile binaries shared by default
patch -p1 -i ../klibc-compile-shared-by-default.patch || return 1
# fix compilation on 2.6.24
patch -p1 -i ../klibc-2.6.24.patch || return 1
# don't build kill, gzip and cpio
patch -p1 -i ../klibc-Kbuild.patch || return 1
make EXTRA_KLIBCFLAGS='' || return 1
make INSTALLROOT=$startdir/pkg install || return 1
#simplify
mv $startdir/pkg/usr/lib/klibc/bin/sh.shared $startdir/pkg/usr/lib/klibc/bin/sh
mv $startdir/pkg/usr/lib/klibc/bin/kinit.shared $startdir/pkg/usr/lib/klibc/bin/kinit
ln -sf asm-x86 $startdir/pkg/usr/lib/klibc/include/asm
provides[${#provides[@]}]="$(basename $startdir/pkg/lib/klibc-*.so .so)"
export provides
}
|