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:
Armijn Hemel 2005-12-23 19:25:58 +00:00
parent 7e6f127abb
commit ae11cdc41e

View 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