Files
gentoo/dev-util/vmtouch/vmtouch-1.3.0.ebuild
Kent Fredric d52db010b1 dev-util/vmtouch: Keyword ~arm64
Package-Manager: Portage-2.3.55, Repoman-2.3.12
Signed-off-by: Kent Fredric <kentnl@gentoo.org>
2019-01-12 14:28:51 +13:00

29 lines
649 B
Bash

# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
inherit toolchain-funcs
DESCRIPTION="Virtual Memory Toucher, portable file system cache diagnostics and control"
HOMEPAGE="http://hoytech.com/vmtouch/"
SRC_URI="https://github.com/hoytech/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux"
IUSE=""
DEPEND=""
RDEPEND=""
src_compile() {
emake CC="$(tc-getCC)"
}
src_install() {
local my_prefix="${ED}/usr"
emake PREFIX="${my_prefix}" MANDIR="${my_prefix}/share/man/man8" install
dodoc CHANGES README.md TODO
}