Package Details: zotero-bin 7.0.9-1

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: 416
Popularity: 2.66
First Submitted: 2022-03-27 05:19 (UTC)
Last Updated: 2024-10-30 17:40 (UTC)

Latest Comments

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

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 }

macxcool commented on 2017-07-12 18:04 (UTC)

@sguyader: Thx.

sguyader commented on 2017-07-12 12:17 (UTC)

Here's a working, updated PKGBUILD for both x86_64 and i686 architectures: # Contributor: Juanma Hernandez <juanmah@gmail.com> # Maintainer: Juanma Hernandez <juanmah@gmail.com> pkgname=zotero pkgver=5.0.2 pkgrel=1 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 md5sums=('b154fa051050c6cb4431dacca0278ba8' 'f227abe95940abd63367716928c6e379') else _arch=i686 md5sums=('1dd4fba22dc4718359e789d9df2b4afd' 'f227abe95940abd63367716928c6e379') fi install='zotero.install' source=("http://download.zotero.org/client/release/$pkgver/Zotero-${pkgver}_linux-${_arch}.tar.bz2" "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 }

stfl commented on 2017-07-12 11:54 (UTC) (edited on 2017-07-12 11:55 (UTC) by stfl)

5.0.2 works like that: at least x86_64 diff --git a/PKGBUILD b/PKGBUILD index da67652..2f38979 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -2,7 +2,7 @@ # Maintainer: Juanma Hernandez <juanmah@gmail.com> pkgname=zotero -pkgver=5.0.1 +pkgver=5.0.2 pkgrel=1 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') @@ -12,7 +12,7 @@ depends=('dbus-glib' 'alsa-lib' 'gtk2' 'gcc-libs' 'nss') if [[ $CARCH == "x86_64" ]] then _arch=x86_64 - md5sums=('969dbbc0bfaf1385d455d7fcae22e109' + md5sums=('b154fa051050c6cb4431dacca0278ba8' 'f227abe95940abd63367716928c6e379') else _arch=i686 @@ -20,7 +20,7 @@ else 'f227abe95940abd63367716928c6e379') fi install='zotero.install' -source=("http://download.zotero.org/standalone/$pkgver/Zotero-${pkgver}_linux-${_arch}.tar.bz2" +source=(Zotero-${pkgver}_linux-${_arch}.tar.bz2::"https://www.zotero.org/download/client/dl?channel=release&platform=linux-${_arch}&version=${pkgver}" "zotero.desktop") package() {

cbrnr commented on 2017-07-12 06:52 (UTC)

The download link does not work, it gives me an "ERROR: Failure while downloading http://download.zotero.org/standalone/5.0.1/Zotero-5.0.1_linux-x86_64.tar.bz2". The download from the website uses this link (which is working): https://www.zotero.org/download/client/dl?channel=release&platform=linux-x86_64&version=5.0.1

Atraii commented on 2017-02-08 19:29 (UTC)

There is no longer a firefox-only beta build. The new beta is standalone with a firefox connector. See: https://forums.zotero.org/discussion/comment/267549/#Comment_267549

juanmah commented on 2017-01-04 17:49 (UTC)

Versions after 4.0.29.10 are released for Firefox and macOS only. jcelerier please read aur comments and zotero changelog before flagging package out-of-date.

<deleted-account> commented on 2016-11-17 20:46 (UTC)

In regard to the comments about the link location from last year. Instead of linking, it would be better to write a start script at /usr/bin/zotero ``` #!/bin/sh cd /usr/lib/zotero ./zotero $* ```