2024-02-12 16:33:03 +01:00
|
|
|
# Copyright 1999-2024 Gentoo Authors
|
2023-09-22 15:38:31 +02:00
|
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
|
|
|
|
EAPI=8
|
|
|
|
|
|
|
|
MY_PN="${PN//-bin}"
|
|
|
|
|
|
|
|
inherit unpacker xdg-utils
|
|
|
|
|
|
|
|
DESCRIPTION="Flash OS images to SD cards & USB drives, safely and easily."
|
|
|
|
HOMEPAGE="https://etcher.io"
|
|
|
|
SRC_URI="https://github.com/balena-io/etcher/releases/download/v${PV}/balena-etcher_${PV}_amd64.deb"
|
2024-02-12 16:33:03 +01:00
|
|
|
S="${WORKDIR}"
|
2023-09-22 15:38:31 +02:00
|
|
|
|
|
|
|
LICENSE="Apache-2.0"
|
|
|
|
SLOT="0"
|
|
|
|
KEYWORDS="~amd64"
|
|
|
|
|
2024-02-12 16:33:03 +01:00
|
|
|
RESTRICT="mirror"
|
|
|
|
|
2023-09-22 15:38:31 +02:00
|
|
|
RDEPEND="
|
|
|
|
app-arch/lzma
|
|
|
|
dev-libs/expat
|
|
|
|
dev-libs/libappindicator
|
|
|
|
dev-libs/nss
|
|
|
|
media-libs/fontconfig
|
|
|
|
media-libs/freetype
|
|
|
|
net-print/cups
|
|
|
|
sys-apps/dbus
|
|
|
|
sys-auth/polkit
|
|
|
|
x11-apps/xrandr
|
|
|
|
x11-libs/cairo
|
|
|
|
x11-libs/gdk-pixbuf
|
|
|
|
x11-libs/gtk+
|
|
|
|
x11-libs/libXScrnSaver
|
|
|
|
x11-libs/libXcomposite
|
|
|
|
x11-libs/libXcursor
|
|
|
|
x11-libs/libXdamage
|
|
|
|
x11-libs/libXext
|
|
|
|
x11-libs/libXfixes
|
|
|
|
x11-libs/libXrender
|
|
|
|
x11-libs/libXtst
|
|
|
|
x11-libs/libnotify
|
|
|
|
"
|
|
|
|
|
|
|
|
QA_PREBUILT="
|
|
|
|
opt/balenaEtcher/*
|
|
|
|
"
|
|
|
|
|
|
|
|
src_unpack() {
|
|
|
|
unpack_deb ${A}
|
|
|
|
}
|
|
|
|
|
|
|
|
src_install() {
|
|
|
|
mv * "${D}" || die
|
|
|
|
|
|
|
|
rm -rd "${D}/usr/share/doc/balena-etcher" || die
|
|
|
|
|
|
|
|
fperms 0755 /opt/balenaEtcher/balena-etcher || die
|
|
|
|
}
|
|
|
|
|
|
|
|
pkg_postinst() {
|
|
|
|
xdg_icon_cache_update
|
|
|
|
}
|
|
|
|
|
|
|
|
pkg_postrm() {
|
|
|
|
xdg_icon_cache_update
|
|
|
|
}
|