Files
guru/dev-lang/cc65/cc65-2.19-r2.ebuild
Seth Price 814eb414ea dev-lang/cc65: keyword 2.19-r2 for ~amd64
Signed-off-by: Seth Price <sprice623@aol.com>
2023-08-21 13:53:38 -04:00

22 lines
463 B
Bash

# Copyright 2022, 2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DESCRIPTION="Cross-development package for 65(C)02 systems"
HOMEPAGE="https://cc65.github.io/"
SRC_URI="https://github.com/cc65/cc65/archive/refs/tags/V${PV}.tar.gz"
LICENSE="ZLIB"
SLOT="0"
KEYWORDS="~amd64"
src_compile() {
emake PREFIX="${EPREFIX}/usr"
}
src_install() {
emake DESTDIR="${D}" PREFIX="${EPREFIX}/usr" install
dodoc README.md
}