From ae11cdc41e43e435a2c01ea6496f742cdfe997be Mon Sep 17 00:00:00 2001 From: Armijn Hemel Date: Fri, 23 Dec 2005 19:25:58 +0000 Subject: [PATCH] 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 --- pkgs/os-specific/linux/kudzu/builder.sh | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 pkgs/os-specific/linux/kudzu/builder.sh diff --git a/pkgs/os-specific/linux/kudzu/builder.sh b/pkgs/os-specific/linux/kudzu/builder.sh new file mode 100644 index 000000000000..7493b6f6df4c --- /dev/null +++ b/pkgs/os-specific/linux/kudzu/builder.sh @@ -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