17 lines
217 B
Bash
17 lines
217 B
Bash
|
source $stdenv/setup
|
||
|
|
||
|
set -e
|
||
|
|
||
|
configurePhase=configurePhase
|
||
|
configurePhase() {
|
||
|
tar zxvf $src
|
||
|
cd jikespg/src
|
||
|
}
|
||
|
|
||
|
installPhase=installPhase
|
||
|
installPhase() {
|
||
|
ensureDir $out/bin
|
||
|
cp jikespg $out/bin
|
||
|
}
|
||
|
|
||
|
genericBuild
|