# Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI="6" inherit toolchain-funcs DESCRIPTION="Yet another metadata injector for FLV (adds onMetaData event to FLV files)." HOMEPAGE="http://yamdi.sourceforge.net/" SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" LICENSE="BSD" SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="" DOCS="CHANGES README" src_compile() { # upstream provides a rudimentary Makefile, so we'd rather compile the .c file here $(tc-getCC ) ${CFLAGS} -o ${PN} ${PN}.c || die "compilation failed" } src_install() { dobin yamdi doman man1/yamdi.1 einstalldocs }