From 8ff9f816ccc1651f99a8094407e7bbf42fac7732 Mon Sep 17 00:00:00 2001 From: Martin Sekera Date: Mon, 21 Aug 2023 19:21:39 +0200 Subject: [PATCH] add app-office/joplin-bin --- .../joplin-bin/joplin-bin-2.11.11.ebuild | 27 +++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 app-office/joplin-bin/joplin-bin-2.11.11.ebuild diff --git a/app-office/joplin-bin/joplin-bin-2.11.11.ebuild b/app-office/joplin-bin/joplin-bin-2.11.11.ebuild new file mode 100644 index 0000000..96c40fa --- /dev/null +++ b/app-office/joplin-bin/joplin-bin-2.11.11.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2023 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DESCRIPTION="Note taking app, on Electron, can import notes from Evernote" +HOMEPAGE="https://joplinapp.org" + +SRC_URI="https://github.com/laurent22/joplin/releases/download/v${PV}/Joplin-${PV}.AppImage" +KEYWORDS="~amd64" + +LICENSE="AGPL-3" +SLOT="0" +IUSE="" +RESTRICT="strip" + +RDEPEND="sys-fs/fuse:0" + +S="${WORKDIR}" + +QA_PREBUILT="*" +S="${WORKDIR}" + +src_install() { + cp "${DISTDIR}/Joplin-${PV}.AppImage" joplin-bin || die + dobin joplin-bin +}