123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- # Build script for squashfs4.3+.
- #
- # Copyright (c) 2018-2020 Matias Fonzo, <selk@dragora.org>.
- #
- # Licensed under the Apache License, Version 2.0 (the "License");
- # you may not use this file except in compliance with the License.
- # You may obtain a copy of the License at
- #
- # http://www.apache.org/licenses/LICENSE-2.0
- #
- # Unless required by applicable law or agreed to in writing, software
- # distributed under the License is distributed on an "AS IS" BASIS,
- # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- # See the License for the specific language governing permissions and
- # limitations under the License.
- version=20171206_c570c61
- cd -- "$TMPDIR"
- rm -rf squashfs-tools-${version} \
- "${rootdir}/squashfs-tools_lzip"
- unpack "${worktree}/sources/squashfs-tools-${version}.tar.lz"
- # Build instructions
- cd squashfs-tools-${version}
- # Note:
- # The build environment for cross-compilation is not imported,
- # the squashfs-tools installation must work from the host system,
- # this will produce the compressed squash-image
- # Apply a patch to include LZIP support
- patch -p1 < "${worktree}/patches/squashfs-tools/squashfs-tools-4.4_lzip-0.diff"
- cd squashfs-tools
- make -j${jobs} \
- CC=cc LDFLAGS="" all INSTALL_DIR="${rootdir}/squashfs-tools_lzip"
- make -j${jobs} \
- CC=cc LDFLAGS="" install INSTALL_DIR="${rootdir}/squashfs-tools_lzip"
- cleanup()
- {
- cd -- "$TMPDIR" && rm -rf squashfs-tools-${version}
- }
|