mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-07-19 03:53:22 -04:00
Update done using: ``` git grep -l sys-libs/zlib sys-* | xargs sed -i -e s@sys-libs/zlib@virtual/zlib@g git grep -l virtual/zlib-ng sys-* | xargs sed -i -e s@virtual/zlib-ng@sys-libs/zlib-ng@g git diff --name-only | xargs copybump git diff --name-only | xargs grep -l PYTHON_COMPAT | xargs gpy-impl -@dead pkgcheck scan --commits -c SourcingCheck,VisibilityCheck --exit error ``` Signed-off-by: Paul Zander <negril.nx+gentoo@gmail.com>
30 lines
562 B
Bash
30 lines
562 B
Bash
# Copyright 2024-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit git-r3 toolchain-funcs
|
|
|
|
EGIT_REPO_URI="https://github.com/Lekensteyn/dmg2img"
|
|
|
|
DESCRIPTION="Convert Apple disk images to IMG format."
|
|
HOMEPAGE="https://github.com/Lekensteyn/dmg2img"
|
|
LICENSE="GPL-2"
|
|
SLOT="0"
|
|
|
|
DEPEND="
|
|
app-arch/bzip2
|
|
dev-libs/openssl
|
|
virtual/zlib
|
|
"
|
|
RDEPEND="${DEPEND}"
|
|
BDEPEND="${DEPEND}"
|
|
|
|
src_compile() {
|
|
emake CC="$(tc-getCC)" CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}"
|
|
}
|
|
|
|
src_install() {
|
|
emake DESTDIR="${ED}" install
|
|
}
|