xml2tsv-9999.ebuild (538B)
1 # Copyright 1999-2023 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 xml-to-tsv converter" 9 HOMEPAGE="git://bitreich.org/xml2tsv" 10 EGIT_REPO_URI="git://bitreich.org/xml2tsv" 11 12 LICENSE="ISC" 13 SLOT="0" 14 KEYWORDS="" 15 IUSE="static" 16 17 DEPEND="" 18 RDEPEND="" 19 20 src_prepare() { 21 default 22 23 if use static; then 24 echo "LDFLAGS += -static" >> config.mk 25 fi 26 } 27 28 src_compile() { 29 emake 30 } 31 32 src_install() { 33 emake DESTDIR="${D}" PREFIX="${EPREFIX}/usr" install 34 dodoc -r README.md 35 }