blob: 826a0c1b755f89c234c1e4f6561aba93f5d62bee (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
DESCRIPTION="Easy to use filesystem activity monitoring"
HOMEPAGE="http://mytty.org/fspy/"
SRC_URI="http://mytty.org/fspy/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86"
IUSE=""
src_compile() {
emake clean
emake INSTBINDIR=$DESTDIR || die "emake failed"
}
src_install() {
dobin fspy || die "failed to install fspy binary"
dodoc README || die "failed to install documentation"
}
|