Add Basilisk II
This commit is contained in:
parent
67723a361a
commit
bd7e0b459f
1 changed files with 31 additions and 0 deletions
31
app-emulation/basilisk-ii/basilisk-ii-9999.ebuild
Normal file
31
app-emulation/basilisk-ii/basilisk-ii-9999.ebuild
Normal 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}"
|
||||
}
|
Loading…
Reference in a new issue