diff options
author | B. Watson <yalhcru@gmail.com> | 2012-07-29 23:14:20 -0500 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2012-07-29 23:14:20 -0500 |
commit | 4259b6fb383161be55208e7c4aab65cf096e3f5e (patch) | |
tree | d65ca96720040be4b042138fe3101419f16c674f /office/zathura-cb/zathura-cb.SlackBuild | |
parent | c45dac6ecf0de5c1e02e6c3daad962462127f776 (diff) | |
download | slackbuilds-4259b6fb383161be55208e7c4aab65cf096e3f5e.tar.gz |
office/zathura-cb: Added (comic book plugin for zathura)
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
Diffstat (limited to 'office/zathura-cb/zathura-cb.SlackBuild')
-rw-r--r-- | office/zathura-cb/zathura-cb.SlackBuild | 75 |
1 files changed, 75 insertions, 0 deletions
diff --git a/office/zathura-cb/zathura-cb.SlackBuild b/office/zathura-cb/zathura-cb.SlackBuild new file mode 100644 index 0000000000..be9dec3721 --- /dev/null +++ b/office/zathura-cb/zathura-cb.SlackBuild @@ -0,0 +1,75 @@ +#!/bin/bash + +# Slackware build script for zathura-cb + +# Written by B. Watson (yalhcru@gmail.com) + +# Licensed under the WTFPL. See http://sam.zoy.org/wtfpl/ for details. + +PRGNAM=zathura-cb +VERSION=${VERSION:-0.1.0} +BUILD=${BUILD:-1} +TAG=${TAG:-_SBo} + +if [ -z "$ARCH" ]; then + case "$( uname -m )" in + i?86) ARCH=i486 ;; + arm*) ARCH=arm ;; + *) ARCH=$( uname -m ) ;; + esac +fi + +CWD=$(pwd) +TMP=${TMP:-/tmp/SBo} +PKG=$TMP/package-$PRGNAM +OUTPUT=${OUTPUT:-/tmp} + +if [ "$ARCH" = "i486" ]; then + SLKCFLAGS="-O2 -march=i486 -mtune=i686" + LIBDIRSUFFIX="" +elif [ "$ARCH" = "i686" ]; then + SLKCFLAGS="-O2 -march=i686 -mtune=i686" + LIBDIRSUFFIX="" +elif [ "$ARCH" = "x86_64" ]; then + SLKCFLAGS="-O2 -fPIC" + LIBDIRSUFFIX="64" +else + SLKCFLAGS="-O2" + LIBDIRSUFFIX="" +fi + +set -e + +rm -rf $PKG +mkdir -p $TMP $PKG $OUTPUT +cd $TMP +rm -rf $PRGNAM-$VERSION +tar xvf $CWD/$PRGNAM-$VERSION.tar.gz +cd $PRGNAM-$VERSION +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 {} \; + +# as shipped, the source uses g_dir_make_tmp(), which was introduced in +# glib-2.30. Slack 13.37 ships with glib-2.28, so we make the code use +# g_mkdtemp() instead. +patch -p1 < $CWD/glib228compat.diff + +sed -i "s,-fPIC,$SLKCFLAGS," config.mk + +make VERBOSE=1 +strip *.so +make install DESTDIR=$PKG + +mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION +cp -a AUTHORS LICENSE $PKG/usr/doc/$PRGNAM-$VERSION +cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild + +mkdir -p $PKG/install +cat $CWD/slack-desc > $PKG/install/slack-desc + +cd $PKG +/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz} |