forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
exult-sound-0.ebuild
39 lines (32 loc) · 898 Bytes
/
exult-sound-0.ebuild
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
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=5
inherit games
DESCRIPTION="sound data for games-engines/exult"
HOMEPAGE="http://exult.sourceforge.net/"
SRC_URI="mirror://sourceforge/exult/U7MusicOGG_1of2.zip
mirror://sourceforge/exult/U7MusicOGG_2of2.zip
mirror://sourceforge/exult/jmsfx.zip
mirror://sourceforge/exult/jmsfxsi.zip"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 x86"
IUSE=""
DEPEND="!<games-engines/exult-9999"
S=${WORKDIR}
src_unpack() {
mkdir music && cd music || die
unpack U7MusicOGG_{1,2}of2.zip
cd "${WORKDIR}" || die
mkdir flx && cd flx || die
unpack jmsfx{,si}.zip
}
src_install() {
insinto "${GAMES_DATADIR}/exult/music"
doins "${WORKDIR}/music/"*ogg
insinto "${GAMES_DATADIR}/exult/"
doins "${WORKDIR}/flx/"*.flx
newdoc "${WORKDIR}/music/readme.txt" music-readme.txt
prepgamesdirs
}