22 lines
491 B
Bash
22 lines
491 B
Bash
# Copyright 2008-2012 Funtoo Technologies
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: $
|
|
|
|
EAPI=4
|
|
inherit git-2
|
|
DESCRIPTION="Small tool to show UKSM statistics."
|
|
HOMEPAGE="http://github.com/pfactum/uksmstat"
|
|
EGIT_REPO_URI="https://github.com/pfactum/uksmstat.git"
|
|
|
|
LICENSE="GPL-3"
|
|
SLOT="0"
|
|
KEYWORDS="~x86 ~amd64"
|
|
IUSE=""
|
|
|
|
DEPEND=""
|
|
RDEPEND="${DEPEND}"
|
|
src_install() {
|
|
dosbin uksmstat/uksmstat || die "Install failed"
|
|
dodoc README.md || die "Install failed"
|
|
}
|