31 lines
582 B
Bash
31 lines
582 B
Bash
# 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}"
|
|
}
|