# Copyright 1999-2026 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 inherit git-r3 DESCRIPTION="Fast header-only CSV parser library for C++" HOMEPAGE="https://github.com/ben-strasser/fast-cpp-csv-parser" EGIT_REPO_URI="${HOMEPAGE}" LICENSE="BSD" SLOT="0" IUSE="doc" src_prepare() { default mkdir "libfccp" || die mv "csv.h" "libfccp" || die } src_install() { doheader -r "libfccp" if use doc ; then dodoc "LICENSE" "README.md" fi }