From e0c4df92a0d7358c9b3346d37a73c57f90e6718c Mon Sep 17 00:00:00 2001 From: Jake Hillion Date: Mon, 26 Apr 2021 13:36:36 +0100 Subject: [PATCH] Zotero --- app-misc/zotero/Manifest | 1 + app-misc/zotero/zotero-5.0.96.2.ebuild | 28 ++++++++++++++++++++++++++ 2 files changed, 29 insertions(+) create mode 100644 app-misc/zotero/Manifest create mode 100644 app-misc/zotero/zotero-5.0.96.2.ebuild diff --git a/app-misc/zotero/Manifest b/app-misc/zotero/Manifest new file mode 100644 index 0000000..a9743c1 --- /dev/null +++ b/app-misc/zotero/Manifest @@ -0,0 +1 @@ +DIST Zotero-5.0.96.2.tar.bz2 60475436 BLAKE2B 2c113fbbb78f0e4ca4e12ed31ed43ba6e65eea88039f9fda1d1f97e6407b95e9ac1d89b2504f220ce96634f5404defcdb5f5346dec83d5d9f02832e1573f1a60 SHA512 4fc988bf74179ad5f28a4649cfc6c6c5d4eeabc3b7aa60e717681bc57dd1c3ba6f2d3310fb83e6e2e55475aa9d7077329acc3dff52b63a0759c32f542ef0ef47 diff --git a/app-misc/zotero/zotero-5.0.96.2.ebuild b/app-misc/zotero/zotero-5.0.96.2.ebuild new file mode 100644 index 0000000..edf55e6 --- /dev/null +++ b/app-misc/zotero/zotero-5.0.96.2.ebuild @@ -0,0 +1,28 @@ +# Copyright 2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +MY_PN="Zotero" + +DESCRIPTION="A tool to help you collect, organize, cite, and share your research sources" +HOMEPAGE="https://www.zotero.org/" +SRC_URI="https://download.zotero.org/client/release/${PV}/Zotero-${PV}_linux-x86_64.tar.bz2 -> Zotero-${PV}.tar.bz2" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64" + +DEPEND="" +RDEPEND="${DEPEND}" +BDEPEND="" + +S="${WORKDIR}/Zotero-${PV}" + +ZOTERO_INSTALL_DIR="/opt/Zotero" + +src_install() { + dodir ${ZOTERO_INSTALL_DIR} + cp -a "${S}"/. "${D}${ZOTERO_INSTALL_DIR}" +} +