1
0
mirror of https://github.com/gryf/gryf-overlay.git synced 2025-12-19 20:38:05 +01:00

Added ebuild for c64-debugger

This commit is contained in:
2019-08-04 09:48:00 +02:00
parent d20fbfd853
commit fe363fc13e
2 changed files with 38 additions and 0 deletions

View File

@@ -0,0 +1 @@
EBUILD c64-debugger-9999.ebuild 816 BLAKE2B b8b7a85e297afaa56fbca175d5abea1738f4cafcf3f050aa267ca83647b00b7ae11ef279e3488f42e4d86b0b389ed374ba2773ace48f333b7f30f2c40eefdc26 SHA512 752cc305ddd80c2f168bc576ed59911fbad88a6f2c82e2b7ee1f15566132fe3fe4352ee79f0ea373e70d47dca526560854992f063f49893b626998e635cdbe86

View File

@@ -0,0 +1,37 @@
# Copyright 2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit desktop git-r3
DESCRIPTION="Commodore 64 and Atari XL/XE debugger that works in real time."
HOMEPAGE="https://sourceforge.net/projects/c64-debugger"
EGIT_REPO_URI="https://git.code.sf.net/p/c64-debugger/code"
LICENSE=""
SLOT="0"
KEYWORDS="~amd64"
IUSE=""
DEPEND="
media-libs/mesa
x11-libs/gtk+:3
media-libs/alsa-lib
"
RDEPEND="${DEPEND}"
BDEPEND=""
src_compile() {
cd "${WORKDIR}/${PN}-${PV%_*}/MTEngine"
# remove binary compression with upx
sed -i '/upx -9 c64debugger/d' Makefile
make
}
src_install() {
cd "${WORKDIR}/${PN}-${PV%_*}/MTEngine"
dobin c64debugger
cp "Assets/icons C64 Debugger/Images.xcassets/IconPRG.iconset/icon_128x128.png" c64debugger.png
doicon c64debugger.png
}