app-arch/zchunk - 9999 (gentoo)

Search

Install

Install this version:

emerge -a =app-arch/zchunk-9999

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

autounmask =app-arch/zchunk-9999

Or alternatively:

emerge --autounmask-write -a =app-arch/zchunk-9999

Package Information

Description:
File format designed for highly efficient deltas with good compression
Homepage:
https://github.com/zchunk/zchunk
License:
BSD-2

Ebuild Details

Version EAPI Keywords Slot
9999 8 ~amd64 ~x86 0
View Raw Ebuild
# Copyright 2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=8

inherit meson

DESCRIPTION="File format designed for highly efficient deltas with good compression"
HOMEPAGE="https://github.com/zchunk/zchunk"

if [[ ${PV} == 9999 ]]; then
	inherit git-r3
	EGIT_REPO_URI="https://github.com/zchunk/zchunk.git"
else
	SRC_URI="https://github.com/zchunk/zchunk/archive/${PV}.tar.gz -> ${P}.tar.gz"
	KEYWORDS="~amd64 ~x86"
fi

LICENSE="BSD-2"
SLOT="0"
IUSE="test"
RESTRICT="!test? ( test )"

DEPEND="
	app-arch/zstd:=
	net-misc/curl
	dev-libs/openssl:=
"
RDEPEND="${DEPEND}"

src_configure() {
	local emesonargs=(
		$(meson_use test tests)
	)

	meson_src_configure
}

USE Flags

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

Global/Standard Flags

Inherited Eclasses

Dependencies

DEPEND

	app-arch/zstd:=
	net-misc/curl
	dev-libs/openssl:=

RDEPEND

	app-arch/zstd:=
	net-misc/curl
	dev-libs/openssl:=