Files
guru/app-arch/libarchive-qt/libarchive-qt-2.0.4.ebuild
Maciej Barć 0cf1bced1e app-arch/libarchive-qt: bump to 2.0.4
Package-Manager: Portage-3.0.17, Repoman-3.0.2
Signed-off-by: Maciej Barć <xgqt@riseup.net>
2021-04-15 17:21:21 +02:00

40 lines
843 B
Bash

# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit multilib xdg cmake
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 mycmakeargs=(
-DINSTALL_STATIC=$(usex static-libs)
)
cmake_src_configure
}