82e678362f
svn path=/nixpkgs/trunk/; revision=4335
24 lines
361 B
Bash
24 lines
361 B
Bash
source $stdenv/setup
|
|
|
|
|
|
buildPhase() {
|
|
make include/linux/version.h
|
|
}
|
|
|
|
buildPhase=buildPhase
|
|
|
|
|
|
installPhase() {
|
|
mkdir $out
|
|
mkdir $out/include
|
|
cp -prvd include/linux include/asm-i386 include/asm-generic $out/include
|
|
cd $out/include
|
|
ln -s asm-i386 asm
|
|
echo -n > $out/include/linux/autoconf.h
|
|
}
|
|
|
|
installPhase=installPhase
|
|
|
|
|
|
genericBuild
|