ae11cdc41e
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
16 lines
201 B
Bash
16 lines
201 B
Bash
source $stdenv/setup
|
|
|
|
export DESTDIR=$out
|
|
|
|
preInstall() {
|
|
ensureDir $out
|
|
ensureDir $out/etc
|
|
ensureDir $out/sbin
|
|
ensureDir $out/usr
|
|
make install-program
|
|
}
|
|
|
|
preInstall=preInstall
|
|
|
|
genericBuild
|