blob: c52822c2bbae06d222eac5de73330b89d9ab5011 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# Copyright 2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
RESTRICT="mirror"
DESCRIPTION="calculate stat probabalities for the role playing game DSA - Das schwarze Auge"
HOMEPAGE="https://github.com/vaeth/dsa-stats/"
SRC_URI="https://github.com/vaeth/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~x86"
src_install() {
dodoc README
dobin dsa
}
|