Install this version:
emerge -a =dev-lang/cc65-9999
If this version is masked, you can unmask it using the autounmask tool or standard emerge options:
autounmask =dev-lang/cc65-9999
Or alternatively:
emerge --autounmask-write -a =dev-lang/cc65-9999
| Version | EAPI | Keywords | Slot |
|---|---|---|---|
| 9999 | 8 | 0 |
# Copyright 2022, 2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit git-r3 toolchain-funcs
DESCRIPTION="Cross-development package for 65(C)02 systems"
HOMEPAGE="https://cc65.github.io/"
EGIT_REPO_URI="https://github.com/cc65/cc65.git"
LICENSE="ZLIB"
SLOT="0"
src_compile() {
emake CC="$(tc-getCC)" AR="$(tc-getAR)" PREFIX="${EPREFIX}/usr" -j1
}
src_install() {
emake CC="$(tc-getCC)" AR="$(tc-getAR)" DESTDIR="${D}" PREFIX="${EPREFIX}/usr" install
dodoc README.md
}