mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-20 04:31:52 +00:00
add the builder. Due to brain failure a "make install" does not install the
kudzu tools, we need make install-program for that. We do this in preInstall. Maybe not the right place, but what the heck... svn path=/nixpkgs/trunk/; revision=4420
This commit is contained in:
parent
7e6f127abb
commit
ae11cdc41e
15
pkgs/os-specific/linux/kudzu/builder.sh
Normal file
15
pkgs/os-specific/linux/kudzu/builder.sh
Normal file
|
@ -0,0 +1,15 @@
|
|||
source $stdenv/setup
|
||||
|
||||
export DESTDIR=$out
|
||||
|
||||
preInstall() {
|
||||
ensureDir $out
|
||||
ensureDir $out/etc
|
||||
ensureDir $out/sbin
|
||||
ensureDir $out/usr
|
||||
make install-program
|
||||
}
|
||||
|
||||
preInstall=preInstall
|
||||
|
||||
genericBuild
|
Loading…
Reference in a new issue