mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-07-10 15:45:15 -04:00
Closes: https://bugs.gentoo.org/975542 Closes: https://bugs.gentoo.org/975543 Signed-off-by: Pavel Sobolev <contact@paveloom.dev>
43 lines
779 B
Bash
43 lines
779 B
Bash
# Copyright 2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit desktop xdg
|
|
|
|
DESCRIPTION="P2P file sharing system"
|
|
HOMEPAGE="https://www.fopnu.com"
|
|
SRC_URI="
|
|
amd64? ( https://download2.fopnu.com/download/${P}-1.x86_64.manualinstall.tar.gz -> ${P}.tar.gz )
|
|
"
|
|
|
|
S="${WORKDIR}/${P}-1.x86_64.manualinstall"
|
|
|
|
LICENSE="Fopnu"
|
|
SLOT="0"
|
|
KEYWORDS="-* ~amd64"
|
|
RESTRICT="bindist mirror strip"
|
|
|
|
RDEPEND="
|
|
dev-libs/dbus-glib
|
|
dev-libs/glib
|
|
sys-apps/dbus
|
|
sys-libs/glibc
|
|
virtual/zlib
|
|
x11-libs/cairo
|
|
x11-libs/gdk-pixbuf:2
|
|
x11-libs/gtk+:3
|
|
x11-libs/pango
|
|
"
|
|
DEPEND="${RDEPEND}"
|
|
|
|
QA_PREBUILT="usr/bin/fopnu"
|
|
|
|
src_install() {
|
|
sed -i "/^Categories/ s/Internet;//" fopnu.desktop
|
|
|
|
dobin fopnu
|
|
domenu fopnu.desktop
|
|
doicon -s 48 fopnu.png
|
|
}
|