parlay

yet another gentoo overlay
git clone https://git.parazyd.org/parlay
Log | Files | Refs | README

commit 62b0798cb9605e3cb835df2a2682ed57f08510f0
parent 77d2f4f9b9d0ebe736e30a1bc79150bf83376aee
Author: parazyd <parazyd@dyne.org>
Date:   Sun, 24 Apr 2022 13:22:44 +0200

app-text/json2tsv: Add 9999 ebuild.

Diffstat:
Aapp-text/json2tsv/json2tsv-9999.ebuild | 33+++++++++++++++++++++++++++++++++
Aapp-text/json2tsv/metadata.xml | 7+++++++
2 files changed, 40 insertions(+), 0 deletions(-)

diff --git a/app-text/json2tsv/json2tsv-9999.ebuild b/app-text/json2tsv/json2tsv-9999.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit git-r3 + +DESCRIPTION="Simple json-to-tsv converter" +HOMEPAGE="git://codemadness.org/json2tsv" +EGIT_REPO_URI="git://codemadness.org/json2tsv" + +LICENSE="ISC" +SLOT="0" +KEYWORDS="" +IUSE="" + +DEPEND="" +RDEPEND="" + +src_prepare() { + default + + sed -e 's@^MANPREFIX = .*@MANPREFIX = ${PREFIX}/share/man@' -i Makefile +} + +src_compile() { + emake +} + +src_install() { + emake DESTDIR="${D}" PREFIX="${EPREFIX}/usr" install + dodoc -r README +} diff --git a/app-text/json2tsv/metadata.xml b/app-text/json2tsv/metadata.xml @@ -0,0 +1,7 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> +<maintainer type="person"> +<email>parazyd@dyne.org</email> +</maintainer> +</pkgmetadata>