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-libs/pegtl/pegtl-2.8.3-r1.ebuild

33 lines
721 B

# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit cmake
DESCRIPTION="Header-only library for creating parsers according to Parsing Expression Grammar"
HOMEPAGE="https://github.com/taocpp/PEGTL"
SRC_URI="https://github.com/taocpp/PEGTL/archive/${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~arm ~x86"
IUSE="test"
RESTRICT="!test? ( test )"
S="${WORKDIR}/PEGTL-${PV}"
PATCHES=(
"${FILESDIR}/${P}-cmake.patch"
"${FILESDIR}/${P}-gcc-10.patch" # bug 733678
)
src_configure() {
local mycmakeargs=(
-DPEGTL_INSTALL_CMAKE_DIR="$(get_libdir)/cmake/${PN}"
-DPEGTL_INSTALL_DOC_DIR="share/doc/${PF}"
)
cmake_src_configure
}