-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1204 from mariux64/add-squashfs-tools
[squashfs-tools] A squashed read-only filesystem for Linux
- Loading branch information
Showing
1 changed file
with
32 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
} |