mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-07-11 08:03:16 -04:00
29 lines
665 B
Bash
29 lines
665 B
Bash
# Copyright 2023 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit git-r3 toolchain-funcs
|
|
|
|
DESCRIPTION="Reverse-engineered Minecraft Classic client"
|
|
HOMEPAGE="https://www.classicube.net/"
|
|
EGIT_REPO_URI="https://github.com/UnknownShadow200/ClassiCube.git"
|
|
|
|
LICENSE="BSD MIT FTL"
|
|
SLOT="0"
|
|
|
|
DEPEND="x11-libs/libX11 x11-libs/libXi virtual/opengl"
|
|
RDEPEND="${DEPEND}"
|
|
|
|
src_compile() {
|
|
$(tc-getCC) ${CFLAGS} ${LDFLAGS} src/*.c -o ClassiCube -rdynamic -lm -lpthread -lX11 -lXi -lGL -ldl || die
|
|
}
|
|
|
|
src_install() {
|
|
exeinto "/usr/libexec"
|
|
doexe ClassiCube
|
|
dobin "${FILESDIR}/ClassiCube"
|
|
dodoc readme.md
|
|
dodoc doc/*.md
|
|
}
|