diff options
author | Emil Jacobs <emil@emiljacobs.nl> | 2021-12-21 14:24:09 +0100 |
---|---|---|
committer | Emil Jacobs <emil@emiljacobs.nl> | 2021-12-21 14:24:23 +0100 |
commit | d4fb92f720101870d3d1042b38f6120290a7080b (patch) | |
tree | 56d1a23484292202d479f8e4de6e280aff273888 /net-p2p/bisq/bisq-1.8.0.ebuild | |
parent | net-im/nheko: Remove old ebuild (diff) | |
download | guru-d4fb92f720101870d3d1042b38f6120290a7080b.tar.gz guru-d4fb92f720101870d3d1042b38f6120290a7080b.tar.bz2 guru-d4fb92f720101870d3d1042b38f6120290a7080b.zip |
net-p2p/bisq: update
Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Emil Jacobs <emil@emiljacobs.nl>
Diffstat (limited to 'net-p2p/bisq/bisq-1.8.0.ebuild')
-rw-r--r-- | net-p2p/bisq/bisq-1.8.0.ebuild | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/net-p2p/bisq/bisq-1.8.0.ebuild b/net-p2p/bisq/bisq-1.8.0.ebuild new file mode 100644 index 000000000..62cd8d7ba --- /dev/null +++ b/net-p2p/bisq/bisq-1.8.0.ebuild @@ -0,0 +1,39 @@ +# Copyright 2019-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit desktop unpacker xdg + +DESCRIPTION="The decentralized bitcoin exchange (non-atomic, with arbitration)" +HOMEPAGE="https://bisq.network/ https://github.com/bisq-network/exchange/" +SRC_URI="https://bisq.network/downloads/v${PV}/Bisq-64bit-${PV}.deb" + +LICENSE="AGPL-3" +SLOT="0" +KEYWORDS="~amd64" + +DEPEND=" + dev-java/openjfx + net-libs/libnet + virtual/jre:* + x11-libs/gtk+:3" + +RESTRICT="mirror strip" + +# Bundled java, and seems to mostly work without an old ffmpeg +QA_PREBUILT="opt/Bisq/Bisq opt/Bisq/libpackager.so opt/Bisq/runtime/*" +REQUIRES_EXCLUDE="libgstreamer-lite.so libavplugin-53.so libavplugin-54.so libavplugin-55.so libavplugin-56.so libavplugin-57.so libavplugin-ffmpeg-56.so libavplugin-ffmpeg-57.so" + +S="${WORKDIR}" + +src_compile() { + : +} + +src_install() { + cp -ar "${S}"/opt/bisq "${ED}"/opt/ + dosym ../Bisq/Bisq /opt/bisq/bin/Bisq + domenu opt/bisq/lib/bisq-Bisq.desktop + doicon opt/bisq/lib/Bisq.png +} |