Skip to content

Commit

Permalink
Merge pull request #1204 from mariux64/add-squashfs-tools
Browse files Browse the repository at this point in the history
[squashfs-tools] A squashed read-only filesystem for Linux
  • Loading branch information
donald authored Aug 21, 2019
2 parents 6a410f5 + 4e6501c commit d182c0e
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions squashfs-tools.be0
Original file line number Diff line number Diff line change
@@ -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
}

0 comments on commit d182c0e

Please sign in to comment.