blob: 4851008566f2ccbb7745222e9688812cffad60d8 (
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit desktop wrapper unpacker
DESCRIPTION="Platform game where you manipulate liquids."
HOMEPAGE="http://strangeloopgames.com"
SRC_URI="${PN}-$(ver_cut 2)$(ver_cut 3)$(ver_cut 1)-bin"
LICENSE="all-rights-reserved"
SLOT="0"
KEYWORDS="~amd64 ~x86"
RESTRICT="strip fetch"
DEPEND="app-arch/unzip"
S=${WORKDIR}/data
pkg_nofetch() {
echo
elog "Download ${SRC_URI} from ${HOMEPAGE} and place it in ${ACTUAL_PORTAGE_DISTDIR}"
echo
}
src_unpack() {
unpack_zip ${A}
}
src_install() {
local dir="${GAMES_PREFIX_OPT}/${PN}"
insinto "${dir}"
exeinto "${dir}"/x86
newicon "${FILESDIR}/${PN}.png" "${PN}.png"
dodoc "Linux.README"
rm "Vessel.bmp" "Linux.README"
doins -r Data
doexe x86/*
make_wrapper "${PN}" "./x86/${PN}.x86" "${dir}" "${dir}/x86"
make_desktop_entry "${PN}" "Vessel" "${PN}"
}
|