mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-07-08 14:43:27 -04:00
Part-of: https://github.com/gentoo/guru/pull/447 Closes: https://github.com/gentoo/guru/pull/447 Signed-off-by: David Roman <stkw0@disroot.org>
32 lines
789 B
Bash
32 lines
789 B
Bash
# Copyright 2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
PYTHON_COMPAT=( python3_{12..14} )
|
|
DISTUTILS_USE_PEP517=setuptools
|
|
inherit xdg distutils-r1 desktop
|
|
|
|
DESCRIPTION="WhatsApp desktop application written in PyQt6 + PyQt6-WebEngine"
|
|
HOMEPAGE="https://github.com/rafatosta/zapzap"
|
|
|
|
SRC_URI="https://github.com/rafatosta/zapzap/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
|
|
|
|
LICENSE="GPL-3"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64"
|
|
|
|
RDEPEND="
|
|
dev-python/pyqt6[dbus]
|
|
dev-python/pyqt6-webengine
|
|
"
|
|
DEPEND="${RDEPEND}"
|
|
|
|
src_install() {
|
|
distutils-r1_src_install
|
|
doicon -s scalable share/icons/com.rtosta.zapzap.svg
|
|
domenu share/applications/com.rtosta.zapzap.desktop
|
|
insinto /usr/share/metainfo
|
|
doins share/metainfo/com.rtosta.zapzap.appdata.xml
|
|
}
|