mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-07-20 20:43:09 -04:00
1. versioned distfile -- more versions can coexist 2. add virtual/udev to RDEPENDs -- it links to libudev.so.1 3. remove libdrm RDEPEND -- it does not link to it directly Signed-off-by: Filip Kobierski <fkobi@pm.me>
77 lines
1.6 KiB
Bash
77 lines
1.6 KiB
Bash
# Copyright 1999-2026 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit desktop rpm xdg-utils
|
|
|
|
MY_PN="${PN%-bin}"
|
|
|
|
DESCRIPTION="Beta Client for Proton Mail"
|
|
HOMEPAGE="https://proton.me/mail"
|
|
SRC_URI="https://proton.me/download/mail/linux/${PV}/ProtonMail-desktop-beta.rpm -> ${P}.rpm"
|
|
S="${WORKDIR}"
|
|
|
|
# https://github.com/NixOS/nixpkgs/pull/296127#discussion_r1528184212
|
|
LICENSE="GPL-3+"
|
|
SLOT="0"
|
|
KEYWORDS="-* ~amd64"
|
|
|
|
RDEPEND="
|
|
app-accessibility/at-spi2-core:2
|
|
dev-libs/expat
|
|
dev-libs/glib:2
|
|
dev-libs/nspr
|
|
dev-libs/nss
|
|
media-libs/alsa-lib
|
|
media-libs/mesa
|
|
net-print/cups
|
|
sys-apps/dbus
|
|
x11-libs/cairo
|
|
x11-libs/gtk+:3
|
|
x11-libs/libX11
|
|
x11-libs/libXcomposite
|
|
x11-libs/libXdamage
|
|
x11-libs/libXext
|
|
x11-libs/libXfixes
|
|
x11-libs/libXrandr
|
|
x11-libs/libxcb
|
|
x11-libs/libxkbcommon
|
|
x11-libs/pango
|
|
virtual/udev
|
|
"
|
|
|
|
QA_PREBUILT="opt/proton-mail/*"
|
|
|
|
src_install() {
|
|
into /opt
|
|
cp -r "${S}"/usr/lib/* "${D}"/opt/proton-mail || die "Failed to copy files to destination directory"
|
|
|
|
dosym "../../opt/proton-mail/Proton Mail Beta" "/usr/bin/proton-mail"
|
|
|
|
insinto /usr/share
|
|
doins -r "${S}/usr/share/pixmaps"
|
|
doins -r "${S}/usr/share/applications"
|
|
|
|
local desktopentryargs=(
|
|
--eapi9 "${MY_PN}"
|
|
--args "--ozone-platform-hint=auto %U"
|
|
--name "Proton Mail"
|
|
--comment "Proton official desktop application for Proton Mail and Proton Calendar"
|
|
--icon "${MY_PN}"
|
|
--entry "GenericName=Proton Mail"
|
|
--entry "StartupNotify=true"
|
|
--entry "MimeType=x-scheme-handler/mailto;"
|
|
--force
|
|
)
|
|
make_desktop_entry "${desktopentryargs[@]}"
|
|
}
|
|
|
|
pkg_postinst() {
|
|
xdg_desktop_database_update
|
|
}
|
|
|
|
pkg_postrm() {
|
|
xdg_desktop_database_update
|
|
}
|