app-arch/sasquatch - 4.5.1.6 (gentoo)

Search

Install

Install this version:

emerge -a =app-arch/sasquatch-4.5.1.6

If this version is masked, you can unmask it using the autounmask tool or standard emerge options:

autounmask =app-arch/sasquatch-4.5.1.6

Or alternatively:

emerge --autounmask-write -a =app-arch/sasquatch-4.5.1.6

Package Information

Description:
An extended version of sasquashfs-tools
Homepage:
https://github.com/onekey-sec/sasquatch
License:
GPL-2

Ebuild Details

Version EAPI Keywords Slot
4.5.1.6 9 ~amd64 0
View Raw Ebuild
# Copyright 2025-2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=9

inherit flag-o-matic toolchain-funcs

MY_PV="$(ver_rs 3 '-')"
MY_P="${PN}-v${MY_PV}"
DESCRIPTION="An extended version of sasquashfs-tools"
HOMEPAGE="https://github.com/onekey-sec/sasquatch"
SRC_URI="https://github.com/onekey-sec/sasquatch/archive/refs/tags/${MY_P}.tar.gz -> ${P}.tar.gz"

S="${WORKDIR}/${PN}-${MY_P}"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64"
IUSE="debug deprecated lz4 lzma lzo xattr zstd"

REQUIRED_USE="
	deprecated? ( !lzma )
	lzma? ( !deprecated )
"

DEPEND="
	virtual/zlib:=
	lz4? ( app-arch/lz4 )
	lzma? ( app-arch/xz-utils )
	lzo? ( dev-libs/lzo )
	xattr? ( sys-apps/attr )
	zstd? ( app-arch/zstd )
"

RDEPEND="
	!sys-fs/squashfs-tools
	${DEPEND}
"

use10() {
	usex "${1}" 1 0
}

src_compile() {
	# set up make command line variables in EMAKE_SQUASHFS_CONF
	local opts=(
		LZMA_XZ_SUPPORT=$(use10 deprecated)
		LZO_SUPPORT=$(use10 lzo)
		LZ4_SUPPORT=$(use10 lz4)
		XATTR_SUPPORT=$(use10 xattr)
		XZ_SUPPORT=$(use10 lzma)
		ZSTD_SUPPORT=$(use10 zstd)
	)

	tc-export CC
	use debug && append-cppflags -DSQUASHFS_TRACE
	emake "${opts[@]}" -C squashfs-tools
}

src_install() {
	dobin squashfs-tools/sasquatch
	dodoc ACKNOWLEDGEMENTS CHANGES README*
	doman manpages/*.1
}

USE Flags

Manage flags for this package: euse -i <flag> -p app-arch/sasquatch | euse -E <flag> -p app-arch/sasquatch | euse -D <flag> -p app-arch/sasquatch

Global/Standard Flags

lz4
lzo

Inherited Eclasses

Dependencies

DEPEND

	virtual/zlib:=
	lz4? ( app-arch/lz4 )
	lzma? ( app-arch/xz-utils )
	lzo? ( dev-libs/lzo )
	xattr? ( sys-apps/attr )
	zstd? ( app-arch/zstd )

RDEPEND

	!sys-fs/squashfs-tools
	
	virtual/zlib:=
	lz4? ( app-arch/lz4 )
	lzma? ( app-arch/xz-utils )
	lzo? ( dev-libs/lzo )
	xattr? ( sys-apps/attr )
	zstd? ( app-arch/zstd )

Manifest for 4.5.1.6

Type File Size Source URLs
DIST sasquatch-4.5.1.6.tar.gz 498165 bytes https://github.com/onekey-sec/sasquatch/archive/refs/tags/sasquatch-v$(ver_rs 3 '-').tar.gz