blob: 165e0ddcfa5c5ec230dc28fa3f0eb519009a8f0b (
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
|
# Copyright 2014 Julian Ospald <hasufell@posteo.de>
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI=5
inherit git-r3
MY_PN=${PN%-data}
DESCRIPTION="Data files for opendungeons"
HOMEPAGE="http://opendungeons.sourceforge.net"
EGIT_REPO_URI="https://github.com/OpenDungeons/OpenDungeons-media-source.git"
LICENSE="GPL-3 CC-BY-SA-3.0"
SLOT="0"
KEYWORDS=""
IUSE=""
src_install() {
insinto /usr/share/OpenDungeons
doins -r *
}
|