nixpkgs/pkgs/os-specific/linux/kudzu/builder.sh
Armijn Hemel ae11cdc41e 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
2005-12-23 19:25:58 +00:00

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