blob: 29495e1d9f29800c3d639f635a48c4fd42df2b6d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
appendToVar prePhases moveBuildDir
moveBuildDir() {
mkdir -p $out/.build
cd $out/.build
}
appendToVar postPhases removeBuildDir
removeBuildDir() {
rm -rf $out/.build
}
|