Package Details: zotero-bin 6.0.35-2

Git Clone URL: https://aur.archlinux.org/zotero-bin.git (read-only, click to copy)
Package Base: zotero-bin
Description: Zotero Standalone. Is a free, easy-to-use tool to help you collect, organize, cite, and share your research sources.
Upstream URL: https://www.zotero.org/download
Licenses: AGPL3
Conflicts: zotero
Provides: zotero
Submitter: juanmah
Maintainer: juanmah
Last Packager: juanmah
Votes: 404
Popularity: 3.56
First Submitted: 2022-03-27 05:19 (UTC)
Last Updated: 2024-03-05 06:02 (UTC)

Latest Comments

« First ‹ Previous 1 .. 4 5 6 7 8 9 10 11 12 13 14 .. 20 Next › Last »

juanmah commented on 2017-09-12 03:57 (UTC) (edited on 2017-09-12 04:14 (UTC) by juanmah)

Changed back xpdf optional dependency and java-enviroment dependency. @alexanderp and @wsha, you were right.

leonardof commented on 2017-08-23 19:21 (UTC)

@jon.reeve, users can set this in menu Edit > Preferences > tab Advanced > subtab General > button Settings Editor (or something like that; I'm backtranslating).

jon.reeve commented on 2017-08-23 14:02 (UTC)

Could we configure this to stop asking the user to update the package? Zotero complains (often) that it's: "Unable to Update; a recommended update is available, but you don't have permission to install it. To update automatically, modify the zotero program directory to be writeable by your user account." But this is ridiculous, since the user shouldn't have to make /usr/lib writeable by their user account. It looks like you can just change `pref("app.update.enabled", true);` to `false` in /usr/lib/zotero/defaults/preferences/prefs.js.

wsha commented on 2017-08-23 04:32 (UTC)

zotero.jar is not a Java-related file. .jar is the extension used for XUL addons that have been zipped into a single file (I think it stands for "javascript archive"). See https://developer.mozilla.org/en-US/docs/Mozilla/Developer_guide/Build_Instructions/JAR_Packaging Java shouldn't be a dependency.

alexanderp commented on 2017-08-22 20:15 (UTC)

Actually, xpdf is not needed since Zotero needs its own set of pdfinfo and pdftotext which it downloads into its data folder.

juanmah commented on 2017-08-22 16:22 (UTC)

About java-environment, namcap marked it as not included. zotero E: Dependency java-environment detected and not included (found class files usr/lib/zotero/zotero.jar) About xpdf: PDF Full-Text Indexing. Zotero uses the pdfinfo and pdftotext utilities from the open-source Xpdf project for PDF indexing. https://www.zotero.org/support/pdf_fulltext_indexing

gj545rndmu commented on 2017-08-21 21:45 (UTC)

Two questions regarding the dependencies: 1: Why do we need suddenly the java-environment dependency? (I couldn't find why!?) 2. Why xpdf as an optional dependency for PDF indexing? Don't we just need pdfinfo and pdftotext from the poppler package?

corallus commented on 2017-07-21 08:54 (UTC)

The MD5sums for 5.06 are not correct

flamusdiu commented on 2017-07-13 02:18 (UTC)

I prefer the PKGBUILD below. It allows running updpkgsums to update the package quickly. Sadly, you still have to do the silly if/then because of the package() works with $arch (seems to always be set to "i686"). # Contributor: Juanma Hernandez <juanmah@gmail.com> # Maintainer: Juanma Hernandez <juanmah@gmail.com> pkgname=zotero pkgver=5.0.2 pkgrel=2 pkgdesc="Zotero Standalone. Is a free, easy-to-use tool to help you collect, organize, cite, and share your research sources." arch=('i686' 'x86_64') url="http://www.zotero.org/download" license=('GPL3') depends=('dbus-glib' 'alsa-lib' 'gtk2' 'gcc-libs' 'nss') if [[ $CARCH == "x86_64" ]] then _arch="x86_64" else _arch="i686" fi md5sums=('f227abe95940abd63367716928c6e379') md5sums_i686=('1dd4fba22dc4718359e789d9df2b4afd') md5sums_x86_64=('b154fa051050c6cb4431dacca0278ba8') install='zotero.install' source_i686=("Zotero-${pkgver}_linux_i686.tar.bz2::https://www.zotero.org/download/client/dl?channel=release&platform=linux-i686&version=${pkgver}") source_x86_64=("Zotero-${pkgver}_linux_x86_64.tar.bz2::https://www.zotero.org/download/client/dl?channel=release&platform=linux-x86_64&version=${pkgver}") source=("zotero.desktop") package() { mkdir -p "$pkgdir"/usr/{bin,lib/zotero} mv "$srcdir"/Zotero_linux-${_arch}/* "$pkgdir"/usr/lib/zotero ln -s /usr/lib/zotero/zotero "$pkgdir"/usr/bin/zotero install -Dm644 "$srcdir"/zotero.desktop "$pkgdir"/usr/share/applications/zotero.desktop # Copy zotero icons to a standard location install -Dm644 "$pkgdir"/usr/lib/zotero/chrome/icons/default/default16.png "$pkgdir"/usr/share/icons/hicolor/16x16/apps/zotero.png install -Dm644 "$pkgdir"/usr/lib/zotero/chrome/icons/default/default32.png "$pkgdir"/usr/share/icons/hicolor/32x32/apps/zotero.png install -Dm644 "$pkgdir"/usr/lib/zotero/chrome/icons/default/default48.png "$pkgdir"/usr/share/icons/hicolor/48x48/apps/zotero.png install -Dm644 "$pkgdir"/usr/lib/zotero/chrome/icons/default/default256.png "$pkgdir"/usr/share/icons/hicolor/256x256/apps/zotero.png }