18 lines
211 B
Bash
18 lines
211 B
Bash
|
source $stdenv/setup
|
||
|
|
||
|
preBuild() {
|
||
|
cd squashfs-tools
|
||
|
}
|
||
|
|
||
|
preBuild=preBuild
|
||
|
|
||
|
installPhase() {
|
||
|
ensureDir $out/sbin
|
||
|
cp mksquashfs $out/sbin
|
||
|
cp unsquashfs $out/sbin
|
||
|
}
|
||
|
|
||
|
installPhase=installPhase
|
||
|
|
||
|
genericBuild
|