You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
source $stdenv/setup |
|
|
|
eval "$preInstall" |
|
|
|
args= |
|
|
|
target=$out |
|
if test -n "$dir"; then |
|
target=$out/$dir/$name |
|
mkdir -p $out/$dir |
|
fi |
|
|
|
substituteAll $src $target |
|
|
|
if test -n "$isExecutable"; then |
|
chmod +x $target |
|
fi |
|
|
|
eval "$postInstall"
|
|
|