blob: 43ac7804c6a0f5673e0f6f06bb708e9aa234cb95 (
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
|
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
DESCRIPTION="Game resources for FreeDM"
HOMEPAGE="https://freedoom.github.io"
SRC_URI="https://github.com/freedoom/freedoom/releases/download/v${PV}/freedm-${PV}.zip"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~x86"
BDEPEND="app-arch/unzip"
S="${WORKDIR}/freedm-${PV}"
DOOMWADPATH=/usr/share/doom
src_install() {
insinto ${DOOMWADPATH}
doins freedm.wad
dodoc CREDITS.txt README.html
}
pkg_postinst() {
elog "FreeDM WAD file installed into ${DOOMWADPATH} directory."
}
|