summaryrefslogtreecommitdiff
blob: d1e71dfd8d195f6d1c8eec05642abc75f28f10b1 (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
26
27
28
29
30
31
32
33
34
35
36
37
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $

# Copyright 2014 Anton Ilin
# Distributed under the terms of the MIT LICENSE
# $Header: $

EAPI=5

inherit autotools eutils git-2

DESCRIPTION="Management suite for dotfiles"
HOMEPAGE="https://github.com/thoughtbot/rcm"

LICENSE="BSD"
SLOT="0"
KEYWORDS="~x86 ~amd64"

EGIT_REPO_URI="https://github.com/thoughtbot/rcm.git"
EGIT_COMMIT="v${PV}"

DEPEND="dev-ruby/mustache"

src_prepare() {
    eautoreconf
    maint/autocontrib man/rcm.7.mustache
}

src_configure() {
    econf
}

src_install() {
    emake DESTDIR="${D}" install
}