Add Basilisk II

This commit is contained in:
Zachary Hall 2024-09-26 08:35:39 -07:00
parent 67723a361a
commit bd7e0b459f

View file

@ -0,0 +1,31 @@
# Copyright 2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit git-r3
DESCRIPTION="MacOS Classic Emulator"
HOMEPAGE="https://basilisk.cebix.net/"
EGIT_REPO_URI="https://github.com/kanjitalk755/macemu.git"
LICENSE="GPL2"
SLOT="0"
KEYWORDS="~amd64"
DEPEND=""
RDEPEND="${DEPEND}"
BDEPEND="dev-build/make dev-build/autoconf dev-build/automake"
src_configure() {
cd BasiliskII/src/Unix
./autogen.sh
econf
}
src_compile() {
cd BasiliskII/src/Unix
emake
}
src_install() {
cd BasiliskII/src/Unix
emake install DESTDIR="${D}"
}