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-3.2.1.ebuild

28 lines
644 B

# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
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"
S="${WORKDIR}/${P^^}"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~arm ~arm64 ~riscv ~x86"
PATCHES=(
"${FILESDIR}"/${P}-werror.patch
)
src_configure() {
local mycmakeargs=(
-DPEGTL_INSTALL_CMAKE_DIR="$(get_libdir)/cmake/${PN}"
-DPEGTL_INSTALL_DOC_DIR="share/doc/${PF}"
)
cmake_src_configure
}