9 lines
195 B
Bash
Executable File
9 lines
195 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
cd squashfs-tools
|
|
|
|
make XZ_SUPPORT=1 LZO_SUPPORT=0 LZ4_SUPPORT=0 ZSTD_SUPPORT=0
|
|
|
|
install -Dm755 mksquashfs "$1/usr/bin/mksquashfs"
|
|
install -Dm755 unsquashfs "$1/usr/bin/unsquashfs"
|