mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-16 19:50:19 +01:00
academic/mendeleydesktop: Added to 13.0 repository
This commit is contained in:
parent
d7a9012a9d
commit
a459fe3bc5
5 changed files with 115 additions and 0 deletions
6
academic/mendeleydesktop/README
Normal file
6
academic/mendeleydesktop/README
Normal file
|
@ -0,0 +1,6 @@
|
|||
Before you use Mendeley, make sure that you are agree with the
|
||||
terms and conditions at http://www.mendeley.com/terms/
|
||||
|
||||
Mendeley is a software to organize, share, and discover research papers.
|
||||
Like iTunes(tm) for research papers, Mendeley is a free research management
|
||||
tool for desktop and web.
|
10
academic/mendeleydesktop/doinst.sh
Normal file
10
academic/mendeleydesktop/doinst.sh
Normal file
|
@ -0,0 +1,10 @@
|
|||
if [ -x /usr/bin/update-desktop-database ]; then
|
||||
/usr/bin/update-desktop-database -q usr/share/applications >/dev/null 2>&1
|
||||
fi
|
||||
|
||||
if [ -e usr/share/icons/hicolor/icon-theme.cache ]; then
|
||||
if [ -x /usr/bin/gtk-update-icon-cache ]; then
|
||||
/usr/bin/gtk-update-icon-cache usr/share/icons/hicolor >/dev/null 2>&1
|
||||
fi
|
||||
fi
|
||||
|
70
academic/mendeleydesktop/mendeleydesktop.SlackBuild
Normal file
70
academic/mendeleydesktop/mendeleydesktop.SlackBuild
Normal file
|
@ -0,0 +1,70 @@
|
|||
#!/bin/sh
|
||||
|
||||
# Slackware build script for mendeleydesktop
|
||||
|
||||
# Written by Grissiom <chaos.proton@gmail.com>
|
||||
|
||||
PRGNAM=mendeleydesktop
|
||||
VERSION=${VERSION:-0.9.5.2}
|
||||
ARCH=${ARCH:-i486}
|
||||
BUILD=${BUILD:-1}
|
||||
TAG=${TAG:-_SBo}
|
||||
|
||||
CWD=$(pwd)
|
||||
TMP=${TMP:-/tmp/SBo}
|
||||
PKG=$TMP/package-$PRGNAM
|
||||
OUTPUT=${OUTPUT:-/tmp}
|
||||
|
||||
if [ "$ARCH" = "i486" ]; then
|
||||
LIBDIRSUFFIX=""
|
||||
elif [ "$ARCH" = "i686" ]; then
|
||||
ARCH="i486" # mendeleydesktop doesn't have i686 pre-builds.
|
||||
LIBDIRSUFFIX=""
|
||||
elif [ "$ARCH" = "x86_64" ]; then
|
||||
LIBDIRSUFFIX="64"
|
||||
fi
|
||||
|
||||
set -e
|
||||
|
||||
rm -rf $PKG
|
||||
mkdir -p $TMP $PKG $OUTPUT
|
||||
cd $TMP
|
||||
rm -rf $PRGNAM-$VERSION-linux-$ARCH
|
||||
tar xvf $CWD/$PRGNAM-$VERSION-linux-${ARCH}.tar.bz2
|
||||
cd $PRGNAM-$VERSION-linux-$ARCH
|
||||
chown -R root:root .
|
||||
find . \
|
||||
\( -perm 777 -o -perm 775 -o -perm 711 -o -perm 555 -o -perm 511 \) \
|
||||
-exec chmod 755 {} \; -o \
|
||||
\( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \
|
||||
-exec chmod 644 {} \;
|
||||
|
||||
rm lib/libQt* lib/libssl* lib/libpng*
|
||||
rm lib/mendeleydesktop/libexec/qt.conf
|
||||
rm -rf lib/mendeleydesktop/plugins
|
||||
[ $ARCH = 'x86_64' ] && mv lib lib$LIBDIRSUFFIX
|
||||
rm bin/mendeleydesktop
|
||||
ln -s ../lib${LIBDIRSUFFIX}/mendeleydesktop/libexec/mendeleydesktop.$ARCH \
|
||||
bin/mendeleydesktop
|
||||
|
||||
mkdir $PKG/usr
|
||||
|
||||
# some docs lay on the top folder, so install them first
|
||||
mkdir -p $PKG/usr/doc
|
||||
mv share/doc/mendeleydesktop $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
mv LICENSE README $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
|
||||
rm INSTALL
|
||||
rmdir share/doc
|
||||
|
||||
mv * $PKG/usr
|
||||
|
||||
find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF | \
|
||||
cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true
|
||||
|
||||
mkdir -p $PKG/install
|
||||
cat $CWD/doinst.sh > $PKG/install/doinst.sh
|
||||
cat $CWD/slack-desc > $PKG/install/slack-desc
|
||||
|
||||
cd $PKG
|
||||
/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz}
|
10
academic/mendeleydesktop/mendeleydesktop.info
Normal file
10
academic/mendeleydesktop/mendeleydesktop.info
Normal file
|
@ -0,0 +1,10 @@
|
|||
PRGNAM="mendeleydesktop"
|
||||
VERSION="0.9.5.2"
|
||||
HOMEPAGE="http://www.mendeley.com/"
|
||||
DOWNLOAD="http://www.mendeley.com/downloads/linux/mendeleydesktop-0.9.5.2-linux-i486.tar.bz2"
|
||||
MD5SUM="eecac2a8307a34764f224042653cb1d9"
|
||||
DOWNLOAD_x86_64="http://www.mendeley.com/downloads/linux/mendeleydesktop-0.9.5.2-linux-x86_64.tar.bz2"
|
||||
MD5SUM_x86_64="02b7ea5445449dc06fcb8ff7831d9265"
|
||||
MAINTAINER="Grissiom"
|
||||
EMAIL="chaos.proton@gmail.com"
|
||||
APPROVED="dsomero"
|
19
academic/mendeleydesktop/slack-desc
Normal file
19
academic/mendeleydesktop/slack-desc
Normal file
|
@ -0,0 +1,19 @@
|
|||
# HOW TO EDIT THIS FILE:
|
||||
# The "handy ruler" below makes it easier to edit a package description. Line
|
||||
# up the first '|' above the ':' following the base package name, and the '|' on
|
||||
# the right side marks the last column you can put a character in. You must make
|
||||
# exactly 11 lines for the formatting to be correct. It's also customary to
|
||||
# leave one space after the ':'.
|
||||
|
||||
|-----handy-ruler------------------------------------------------------|
|
||||
mendeleydesktop: Mendeley Desktop (managing and sharing research papers tool)
|
||||
mendeleydesktop:
|
||||
mendeleydesktop: Mendeley is a software to organize, share, and discover
|
||||
mendeleydesktop: research papers. Before you download and use this software,
|
||||
mendeleydesktop: make sure you agree with the terms and conditions located at:
|
||||
mendeleydesktop: http://www.mendeley.com/terms/
|
||||
mendeleydesktop:
|
||||
mendeleydesktop: Homepage: http://www.mendeley.com/
|
||||
mendeleydesktop:
|
||||
mendeleydesktop:
|
||||
mendeleydesktop:
|
Loading…
Reference in a new issue