blob: 82202f1ed1910c95a336cedb4c6fb0617603481d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit xdg meson
DESCRIPTION="A Qt based archiving solution with libarchive backend"
HOMEPAGE="https://gitlab.com/marcusbritanicus/libarchive-qt"
if [[ "${PV}" == *9999* ]]; then
inherit git-r3
EGIT_REPO_URI="https://gitlab.com/marcusbritanicus/${PN}.git"
else
SRC_URI="https://gitlab.com/marcusbritanicus/${PN}/-/archive/v${PV}/${PN}-v${PV}.tar.gz -> ${P}.tar.gz"
KEYWORDS="~amd64"
S="${WORKDIR}/${PN}-v${PV}"
fi
RESTRICT="test"
LICENSE="LGPL-3"
SLOT="0"
IUSE="static-libs"
DEPEND="
app-arch/libarchive[lzma,bzip2,zlib(+)]
app-arch/lrzip
app-arch/lzip
app-arch/lzop
dev-qt/qtgui:5
"
RDEPEND="${DEPEND}"
src_configure() {
local emesonargs=(
$(meson_use static-libs install_static)
)
meson_src_configure
}
|