You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/dev-util/libtree/libtree-2.0.0.ebuild

32 lines
615 B

# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit cmake
DESCRIPTION="ldd as a tree with an option to bundle dependencies into a single folder"
HOMEPAGE="https://github.com/haampie/libtree"
SRC_URI="https://github.com/haampie/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64"
IUSE="test"
RESTRICT="!test? ( test )"
DEPEND="
dev-libs/cxxopts
dev-cpp/elfio
dev-cpp/termcolor
test? ( dev-cpp/gtest )
"
src_configure() {
local mycmakeargs=(
-DLIBTREE_BUILD_TESTS=$(usex test)
)
cmake_src_configure
}