From ab02078d1690f1d647a8712106a4e3993a16bc18 Mon Sep 17 00:00:00 2001 From: Gwenhael Le Moine Date: Mon, 25 Mar 2013 22:40:59 +0100 Subject: [PATCH] failed attempt to make it work, abandoned due to lack of care Signed-off-by: Gwenhael Le Moine --- xap/UNUSED/zathura/zathura.SlackBuild | 81 +++++++++++++++++++++++++++ 1 file changed, 81 insertions(+) create mode 100755 xap/UNUSED/zathura/zathura.SlackBuild diff --git a/xap/UNUSED/zathura/zathura.SlackBuild b/xap/UNUSED/zathura/zathura.SlackBuild new file mode 100755 index 00000000..fc225c4a --- /dev/null +++ b/xap/UNUSED/zathura/zathura.SlackBuild @@ -0,0 +1,81 @@ +#!/bin/sh -x + +# variables +VERSION=master_$(date +"%Y.%m.%d_%H.%M") +BUILD=1 + + +TAG=cyco +OUTPUT=/tmp +TMP=/tmp/$TAG +CWD=$(pwd) + +PRGNAM=$(basename $CWD) +PKG=$TMP/pkg-$PRGNAM + +ARCH=$(uname -m) + +REPOSITORY=/home/installs/SlackBuilds/repositories/$PRGNAM +PREFIX=/usr + +EMACS=$(basename $(ls /usr/bin/emacs-2*)) +EMACS_VERSION=$(echo "$EMACS" | grep -o "\-[0-9\.]*\-" | tr -d - | head -n1) + +# nettoyage préalable +rm -fr $PKG $TMP/$PRGNAM-$VERSION + +mkdir -p $PKG + +# mise en place +cd $TMP +if [ ! -e $REPOSITORY ] ; then + mkdir -p $(dirname $REPOSITORY) + git clone git://pwmt.org/zathura.git $REPOSITORY +fi + +( cd $REPOSITORY + git pull +) + +cp -R $REPOSITORY $TMP/ +( cd $TMP/$PRGNAM + sed -i 's|girara-data|girara/data|g' *.h + sed -i 's|girara.h|girara/girara.h|g' *.h *.c + make + make install DESTDIR=$PKG MANPREFIX=$PREFIX/man +) + +# correction +( cd $PKG + chown -R root:root * + find $PKG$PREFIX/man -name "*.?" -type f -exec gzip -9 {} \; +) + +# embaumement +mkdir -p $PKG/install + +cat < $PKG/install/slack-desc +# 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------------------------------------------------------| +$PRGNAM: $PRGNAM (a PDF viewer) +$PRGNAM: +$PRGNAM: zathura is a highly customizable and functional PDF viewer based on the poppler +$PRGNAM: rendering library and the gtk+ toolkit. The idea behind zathura is an +$PRGNAM: application that provides a minimalistic and space saving interface as well as +$PRGNAM: an easy usage that mainly focuses on keyboard interaction. +$PRGNAM: +$PRGNAM: +$PRGNAM: +$PRGNAM: http://pwmt.org/zathura/ +$PRGNAM: +EOF + +# empaquetage +cd $PKG +makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.txz