forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcolobot-data-0.1.12.ebuild
46 lines (36 loc) · 971 Bytes
/
colobot-data-0.1.12.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
40
41
42
43
44
45
46
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit cmake
MY_P=colobot-gold-${PV}-alpha
MUSIC_P=colobot-music_ogg_${PV}-alpha
DESCRIPTION="Data package for colobot (Colonize with Bots)"
HOMEPAGE="https://colobot.info/"
SRC_URI="
https://github.com/colobot/colobot-data/archive/${MY_P}.tar.gz -> ${MY_P}.data.tar.gz
music? (
https://colobot.info/files/music/${MUSIC_P}.tar.gz )"
LICENSE="GPL-3+"
SLOT="0"
KEYWORDS="~amd64"
IUSE="+music"
S="${WORKDIR}/${PN}-${MY_P}"
src_unpack() {
unpack "${MY_P}.data.tar.gz"
if use music; then
tar -x -f "${DISTDIR}/${MUSIC_P}.tar.gz" -C "${S}/music" || die "Failed to unpack music"
fi
}
src_prepare() {
cmake_src_prepare
if use music; then
sed -i -e '/find_program(WGET wget)/d' -e '/if(NOT WGET)/,+2 d' music/CMakeLists.txt || die
fi
}
src_configure() {
local mycmakeargs=(
-DMUSIC=$(usex music)
-DMUSIC_FLAC=OFF
)
cmake_src_configure
}