mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2025-06-08 14:15:07 +02:00
Closes: https://bugs.gentoo.org/943912 Closes: https://bugs.gentoo.org/951723 Signed-off-by: Johannes Huber <johu@gmx.de> Part-of: https://github.com/gentoo/gentoo/pull/42319 Closes: https://github.com/gentoo/gentoo/pull/42319 Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
20 lines
594 B
Bash
20 lines
594 B
Bash
# Copyright 1999-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit cmake
|
|
|
|
DESCRIPTION="Tool for extracting and creating optimised Xbox ISO images"
|
|
HOMEPAGE="https://sourceforge.net/projects/extract-xiso/"
|
|
if [[ ${PV} == *_p* ]] ; then
|
|
SRC_URI="https://github.com/XboxDev/extract-xiso/archive/refs/tags/build-$(ver_cut 5).tar.gz -> ${P}.tar.gz"
|
|
S="${WORKDIR}"/${PN}-build-$(ver_cut 5)
|
|
else
|
|
SRC_URI="https://downloads.sourceforge.net/extract-xiso/${P}.tar.gz"
|
|
S="${WORKDIR}"/${PN}
|
|
fi
|
|
|
|
LICENSE="BSD-4"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~ppc ~x86"
|