16 lines
205 B
Bash
16 lines
205 B
Bash
|
source $stdenv/setup
|
||
|
|
||
|
args=
|
||
|
|
||
|
target=$out
|
||
|
if test -n "$dir"; then
|
||
|
target=$out/$dir/$name
|
||
|
ensureDir $out/$dir
|
||
|
fi
|
||
|
|
||
|
substituteAll $src $target
|
||
|
|
||
|
if test -n "$isExecutable"; then
|
||
|
chmod +x $target
|
||
|
fi
|