diff --git a/xap/zotero/Zotero-3.0.8_linux-x86_64.tar.bz2.sha1 b/xap/zotero/Zotero-3.0.8_linux-x86_64.tar.bz2.sha1 new file mode 100644 index 00000000..b5de57a0 --- /dev/null +++ b/xap/zotero/Zotero-3.0.8_linux-x86_64.tar.bz2.sha1 @@ -0,0 +1 @@ +ea50cf6e163824915c0fa4bc8c2bef7d0d89035f Zotero-3.0.8_linux-x86_64.tar.bz2 diff --git a/xap/zotero/doinst.sh b/xap/zotero/doinst.sh new file mode 100644 index 00000000..562a266e --- /dev/null +++ b/xap/zotero/doinst.sh @@ -0,0 +1,4 @@ +#!/bin/sh +if [ -x /usr/bin/update-desktop-database ]; then + /usr/bin/update-desktop-database ./usr/share/applications >/dev/null 2>&1 +fi diff --git a/xap/zotero/slack-desc b/xap/zotero/slack-desc new file mode 100644 index 00000000..b0b4edc1 --- /dev/null +++ b/xap/zotero/slack-desc @@ -0,0 +1,12 @@ + |-----handy-ruler-------------------------------------------------------| +zotero: zotero (bibliography manager) +zotero: +zotero: Zotero is a free, easy-to-use tool to help you collect, organize, +zotero: cite, and share your research sources. +zotero: +zotero: This is the standalone version of Zotero. +zotero: +zotero: +zotero: +zotero: +zotero: diff --git a/xap/zotero/zotero.SlackBuild b/xap/zotero/zotero.SlackBuild new file mode 100755 index 00000000..e311b6e9 --- /dev/null +++ b/xap/zotero/zotero.SlackBuild @@ -0,0 +1,103 @@ +#!/bin/bash +# Build script for Slackware +# Copyright (C) 2012 Damien Goutte-Gattat +# +# Redistribution and use of this script, with or without modifications, +# is permitted provided that the following conditions are met: +# +# 1. Redistributions of this script must retain the above copyright +# notice, this list of conditions and the following disclaimer. +# +# THIS SOFTWARE IS PROVIDED BY THE AUTHOR AS IS'' AND ANY EXPRESS OR +# IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED +# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +# DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, +# INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES +# (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR +# SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, +# STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING +# IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +# POSSIBILITY OF SUCH DAMAGE. +# +# Contact: Damien Goutte-Gattat +# +# Latest Zotero sourcecode is available at: . + +# System architecture (Zotero is available for i686 and x86_64) +ARCH=${ARCH:-$(uname -m | sed 's/^i.86$/i486/;s/^arm.*/arm/')} +[ "x$ARCH" = xx86_64 ] && LIBDIRSUFFIX="64" + +# Source package infos +NAMESRC=${NAMESRC:-Zotero} +VERSION=${VERSION:-3.0.8} +ARCHIVE=${ARCHIVE:-$NAMESRC-${VERSION}_linux-$ARCH.tar.bz2} +WGET=${WGET:-http://download.zotero.org/standalone/$VERSION/$ARCHIVE} + +# Build infos +NAMEPKG=${NAMEPKG:-zotero} +BUILD=${BUILD:-1GGD} +EXT=${EXT:-txz} + +# Directories +TMP=${TMP:-/tmp} +OUT=${OUT:-$TMP/build} +PKG=${PKG:-$OUT/$NAMEPKG} +CWD=$(pwd) + +set -e # Quit if a command returns non-zero + +# Sanity checks +if [ $UID -eq 0 ]; then + echo "You should NOT run this script as ROOT!" + exit 1 +fi +if [ ! -d $TMP ]; then + echo "$TMP does not exists or is not a directory!" + exit 1 +fi + +# Get and verify the source archive +if [ ! -r $ARCHIVE ]; then + wget -c -O $ARCHIVE.part "$WGET" + mv $ARCHIVE.part $ARCHIVE +fi +sha1sum -c $ARCHIVE.sha1 +NAME=$(tar ft $ARCHIVE | head -n 1 | cut -d / -f 1) + +# Extract +mkdir -p $PKG/usr/lib$LIBDIRSUFFIX +cd $PKG/usr/lib$LIBDIRSUFFIX +echo "Extracting $ARCHIVE..." +tar xf $CWD/$ARCHIVE +mv $NAME $NAMEPKG-$VERSION + +mkdir -p $PKG/usr/doc/$NAMEPKG-$VERSION +mv $NAMEPKG-$VERSION/COPYING $PKG/usr/doc/$NAMEPKG-$VERSION/ + +mkdir -p $PKG/usr/bin +cat > $PKG/usr/bin/zotero <