blob: 221483c6dbe2b3da42f8ab32f1ade7639af249bb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
inherit git
DESCRIPTION="Tool to store the metadata of files,directories,links in a file tree"
HOMEPAGE="http://david.hardeman.nu/software.php"
EGIT_REPO_URI="git://git.hardeman.nu/metastore.git"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS=""
IUSE=""
src_install() {
emake DESTDIR="${D}" install || die "make install failed"
dodoc README || die "docs install failed"
}
|