1
0
mirror of synced 2024-06-01 10:18:14 +02:00
TheChymera-overlay/app-misc/imcat/imcat-0_alpha.ebuild
Horea Christian 76ddfc9241
app-misc/imcat: new package ahead of Gentoo Main
Package-Manager: Portage-2.3.78, Repoman-2.3.17
Signed-off-by: Horea Christian <chr@chymera.eu>
2019-11-13 19:01:42 +01:00

32 lines
500 B
Bash

# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit git-r3
DESCRIPTION="Show any image in a terminal window."
HOMEPAGE="https://github.com/stolk/imcat"
SRC_URI=""
EGIT_REPO_URI="https://github.com/stolk/imcat"
LICENSE="CC0-1.0"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86"
IUSE="test"
DEPEND=""
RDEPEND=""
src_compile(){
emake
}
src_install() {
dobin imcat
}
src_test() {
./imcat images/* || die
}