summaryrefslogtreecommitdiff
blob: dee8ebb4dfbfead8d346235ebedd5665549b8607 (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
38
39
40
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2

EAPI=6

DESCRIPTION="A dotfile manager for the config files in your home folder"
HOMEPAGE="https://github.com/TheLocehiliosan/yadm/"
SRC_URI="https://github.com/TheLocehiliosan/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"

LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="test"

DOCS=( CHANGES CONTRIBUTORS README.md )

DEPEND="
	test? (
		dev-util/bats
		dev-vcs/git
	)"
RDEPEND="dev-vcs/git
	app-crypt/gnupg"

src_compile() {
	emake yadm.md
}

src_test() {
	# 109_accept_encryption tests are interactive, thus fail. Skip them
	bats $(find test/ -type f -name '*.bats' -and -not -name '109_accept_encryption.bats') \
		|| die "Tests failed"
}

src_install() {
	einstalldocs

	dobin "${PN}"
	doman "${PN}.1"
}