URI: 
       json2tsv-9999.ebuild - parlay - yet another gentoo overlay
  HTML git clone https://git.parazyd.org/parlay
   DIR Log
   DIR Files
   DIR Refs
   DIR README
       ---
       json2tsv-9999.ebuild (538B)
       ---
            1 # Copyright 1999-2025 Gentoo Authors
            2 # Distributed under the terms of the GNU General Public License v2
            3 
            4 EAPI=8
            5 
            6 inherit git-r3
            7 
            8 DESCRIPTION="Simple json-to-tsv converter"
            9 HOMEPAGE="https://codemadness.org/git/json2tsv/file/README.html"
           10 EGIT_REPO_URI="git://codemadness.org/json2tsv"
           11 
           12 LICENSE="ISC"
           13 SLOT="0"
           14 KEYWORDS=""
           15 
           16 src_prepare() {
           17         default
           18 
           19         sed -e 's@^MANPREFIX = .*@MANPREFIX = ${PREFIX}/share/man@' -i Makefile
           20 }
           21 
           22 src_compile() {
           23         emake
           24 }
           25 
           26 src_install() {
           27         emake DESTDIR="${D}" PREFIX="${EPREFIX}/usr" install
           28         dodoc -r README
           29 }