Diff squashdelta-0.1.2 with a squashdelta-9999
/usr/portage/dev-util/squashdelta/squashdelta-9999.ebuild 2023-10-09 14:52:31.004368388 +0300 | ||
---|---|---|
3 | 3 | |
4 | 4 |
EAPI=7 |
5 | 5 | |
6 |
EGIT_REPO_URI="https://github.com/projg2/${PN}.git" |
|
7 |
inherit autotools git-r3 |
|
8 | ||
6 | 9 |
DESCRIPTION="Efficient (partially uncompressed) SquashFS binary delta tool" |
7 | 10 |
HOMEPAGE="https://github.com/projg2/squashdelta/" |
8 |
SRC_URI="https://github.com/projg2/squashdelta/releases/download/v${PV}/${P}.tar.bz2" |
|
11 |
SRC_URI="" |
|
9 | 12 | |
10 | 13 |
# uses public-domain murmurhash3 |
11 | 14 |
LICENSE="BSD public-domain" |
12 | 15 |
SLOT="0" |
13 |
KEYWORDS="~amd64 ~x86" |
|
16 |
KEYWORDS="" |
|
14 | 17 |
IUSE="lz4 +lzo" |
15 | 18 |
# SquashDelta does not make much sense without a compression algo. |
16 | 19 |
REQUIRED_USE="|| ( lz4 lzo )" |
... | ... | |
22 | 25 |
dev-util/xdelta:3" |
23 | 26 |
DEPEND=${COMMON_DEPEND} |
24 | 27 | |
28 |
src_prepare() { |
|
29 |
default |
|
30 |
eautoreconf |
|
31 |
} |
|
32 | ||
25 | 33 |
src_configure() { |
26 | 34 |
local myconf=( |
27 | 35 |
$(use_enable lz4) |