eth0s/ports/core/squashfs-tools/Pkgfile

20 lines
650 B
Text
Raw Normal View History

2019-10-10 17:43:15 +08:00
# Description: Tools for squashfs, a highly compressed read-only filesystem for Linux
# URL:
2019-11-10 23:58:56 +08:00
# Maintainer: Emmett1, emmett1 dot 2miligrams at gmail dot com
2019-10-10 17:43:15 +08:00
# Depends on: zlib lzo xz lz4
name=squashfs-tools
version=4.4
release=1
2020-11-13 13:58:01 +08:00
source=(https://downloads.sourceforge.net/squashfs/squashfs$version.tar.gz
fix-glibc-2.28.patch)
2019-10-10 17:43:15 +08:00
build() {
cd squashfs${version}/${name}
2020-11-13 13:58:01 +08:00
export CFLAGS="$CFLAGS -fcommon" # gcc-10
patch -Np1 -i $SRC/fix-glibc-2.28.patch
2019-10-10 17:43:15 +08:00
make XZ_SUPPORT=1 LZO_SUPPORT=1 LZMA_XZ_SUPPORT=1 LZ4_SUPPORT=1
install -Dm755 mksquashfs "$PKG"/usr/bin/mksquashfs
install -m755 unsquashfs "$PKG"/usr/bin/unsquashfs
}