summaryrefslogtreecommitdiff
blob: cc61686459d7257bb87072a4da4c977af5ab5051 (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
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=8

inherit autotools desktop git-r3

DESCRIPTION="A challenging 2D construction game"
HOMEPAGE="https://bielebridge.net/"
EGIT_REPO_URI="https://gitlab.digitalcourage.de/georg/bielebridge.git"

EGIT_COMMIT="94071bda"

LICENSE="GPLv3"
SLOT="0"
KEYWORDS="amd64"

IUSE=""

RDEPEND="
	dev-lang/lua
	media-libs/libsdl2
	media-libs/sdl2-gfx
	media-libs/sdl2-image
	media-libs/sdl2-ttf
"

DEPEND="${RDEPEND}"

DOCS=( AUTHORS Changelog README )

src_configure() {
	eautoreconf
	default
}

src_install() {
	default
	make_desktop_entry "${PN}" "Bielebridge"
}