blob: 429f22c33408b727bdff0684de1b0c3ddc4c310c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI=5
inherit autotools
DESCRIPTION="A lightweight program that monitors the file system activity"
HOMEPAGE="https://github.com/joebew42/cwatch"
SRC_URI="https://github.com/joebew42/${PN}/archive/v${PV}-experimental.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-2+"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
IUSE=""
DEPEND=""
RDEPEND=""
S="${WORKDIR}/${P}-experimental"
src_prepare() {
eautoreconf
}
|