diff --git a/squashfs-tools.be0 b/squashfs-tools.be0 new file mode 100755 index 000000000..ea33330d1 --- /dev/null +++ b/squashfs-tools.be0 @@ -0,0 +1,32 @@ +#!/bin/env beesh + +# BEE_VERSION squashfs-tools-4.4.0-1 + +SRCURL[0]="https://github.com/plougher/squashfs-tools.git" + +mee_getsources() { + cd ${S} + git clone ${SRCURL} . + # git checkout v${PKGFULLVERSION} + git checkout 00508d9bf2cc2c8d026483d817db212602ab6295 +} + + +#mee_patch() { +# bee_patch +#} + +#mee_configure() { +# bee_configure +#} + +mee_build() { + cd ${S}/squashfs-tools + make +} + +mee_install() { + mkdir -p ${D}/usr/bin + cp -v mksquashfs ${D}/usr/bin + cp -v unsquashfs ${D}/usr/bin +}