# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 DESCRIPTION="A program to generate C code for json manipulation" HOMEPAGE="https://github.com/zltl/json-gen-c" SRC_URI="https://github.com/zltl/json-gen-c/archive/refs/tags/v0.1.4.tar.gz" LICENSE="GPL-3" SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="" DEPEND="" RDEPEND="${DEPEND}" BDEPEND="" DOCS=( README.md ) src_compile() { emake json-gen-c } src_test() { echo "skip test" } src_install() { dobin "${S}"/target/json-gen-c einstalldocs }