# Copyright 2018 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 inherit autotools # DESCRIPTION="DF-SHOW is a Unix-like rewrite of some of the applications from DF-EDIT" DESCRIPTION="dfshow is cool" HOMEPAGE="https://github.com/roberthawdon/dfshow" SRC_URI="https://github.com/roberthawdon/dfshow/archive/v${PV}-alpha.tar.gz" S="${WORKDIR}/${P}-alpha" LICENSE="GPL-3" SLOT="0" KEYWORDS="~amd64" DEPEND="sys-devel/autoconf sys-devel/automake sys-libs/ncurses" src_prepare() { default eautoreconf eautomake --add-missing } src_configure() { econf } src_install() { emake DESTDIR="${D}" install }