mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-07-09 15:13:31 -04:00
31 lines
779 B
Bash
31 lines
779 B
Bash
# Copyright 2023 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit toolchain-funcs
|
|
|
|
DESCRIPTION="Reverse-engineered Minecraft Classic client"
|
|
HOMEPAGE="https://www.classicube.net/"
|
|
SRC_URI="https://github.com/UnknownShadow200/ClassiCube/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
|
|
S="${WORKDIR}/ClassiCube-${PV}"
|
|
|
|
LICENSE="BSD MIT FTL"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~arm ~arm64 ~mips ~ppc ~sparc ~x86"
|
|
|
|
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
|
|
}
|