Skip to content

[squashfs-tools] A squashed read-only filesystem for Linux #1204

Merged
merged 1 commit into from
Aug 21, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
}