gentoo/dev-games/hdl_dump/hdl_dump-0.9.2.20180722.ebuild
Sam James f5f7fb7447
dev-games/hdl_dump: [QA] fix tc-get* quoting
This can cause build problems for e.g. 32-bit (gcc -m32 ...)

Signed-off-by: Sam James <sam@gentoo.org>
2022-03-20 00:25:31 +00:00

42 lines
833 B
Bash

# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit toolchain-funcs
COMMIT="67e66ca0e0a0000563f75c573a046cb8614745ad"
DESCRIPTION="Game installer for PlayStation 2 HD Loader and Open PS2 Loader"
HOMEPAGE="https://github.com/AKuHAK/hdl-dump"
SRC_URI="https://github.com/AKuHAK/hdl-dump/archive/${COMMIT}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 x86"
IUSE="debug"
S="${WORKDIR}/${PN//_/-}-${COMMIT}"
PATCHES=(
"${FILESDIR}"/Makefile.patch
)
src_prepare() {
default
# Be more verbose. Patching this would be messy.
sed -i -r "s/^(\s+)@/\1/" Makefile || die
}
src_compile() {
emake \
CC="$(tc-getCC)" \
RELEASE=$(usex debug no yes) \
IIN_OPTICAL_MMAP=yes
}
src_install() {
dobin hdl_dump
dodoc AUTHORS CHANGELOG README.md
}