mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-07-10 23:52:59 -04:00
Package-Manager: Portage-3.0.21, Repoman-3.0.3 Signed-off-by: Matthias Coppens <coppens.matthias.abc@gmail.com>
42 lines
857 B
Bash
42 lines
857 B
Bash
# Copyright 1999-2021 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=7
|
|
|
|
inherit xdg
|
|
|
|
DESCRIPTION="A browser for the LBRY network, a digital marketplace controlled by its users."
|
|
HOMEPAGE="https://lbry.com/"
|
|
SRC_URI="https://github.com/lbryio/lbry-desktop/releases/download/v${PV}/LBRY_${PV}.deb -> ${P}.deb"
|
|
|
|
LICENSE="MIT"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64"
|
|
QA_PREBUILT="*"
|
|
|
|
RDEPEND="
|
|
dev-libs/libappindicator
|
|
dev-libs/nss
|
|
gnome-base/gconf
|
|
media-libs/alsa-lib
|
|
net-print/cups
|
|
x11-libs/libnotify
|
|
x11-libs/libXtst
|
|
x11-libs/libXScrnSaver
|
|
"
|
|
|
|
S="${WORKDIR}"
|
|
|
|
src_unpack() {
|
|
unpack ${A}
|
|
unpack "${S}"/data.tar.xz
|
|
rm "${S}"/{control,data,debian}* || die
|
|
}
|
|
|
|
src_install() {
|
|
doins -r *
|
|
rm -rd "${ED}"/usr/share/doc || die
|
|
fperms 0755 /opt/LBRY/lbry || die
|
|
fperms 0755 /opt/LBRY/resources/static/daemon/lbrynet || die
|
|
}
|