mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-16 18:37:04 +03:00
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
|