blob: 676934e2df39a15eec70b3aa164fe2f15de237bc (
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
|
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DESCRIPTION="Freedink game data"
HOMEPAGE="https://www.gnu.org/s/freedink/"
SRC_URI="mirror://gnu/freedink/${P}.tar.gz"
LICENSE="
ZLIB
CC-BY-3.0
CC-BY-SA-3.0
Free-Art-1.3
GPL-2+
GPL-3+
OAL-1.0.1
WTFPL-2
public-domain"
SLOT="0"
KEYWORDS="~amd64 ~x86"
src_install() {
emake DESTDIR="${D}" DATADIR="${EPREFIX}"/usr/share install
einstalldocs
}
|