16 lines
141 B
Bash
16 lines
141 B
Bash
|
source $stdenv/setup
|
||
|
|
||
|
preBuild() {
|
||
|
cd src
|
||
|
}
|
||
|
|
||
|
preBuild=preBuild
|
||
|
|
||
|
preInstall() {
|
||
|
ensureDir $out/bin
|
||
|
}
|
||
|
|
||
|
preInstall=preInstall
|
||
|
|
||
|
genericBuild
|