diff options
author | Larry Hajali <larryhaja[at]gmail[dot]com> | 2011-09-22 00:00:08 -0500 |
---|---|---|
committer | Niels Horn <niels.horn@slackbuilds.org> | 2011-09-29 19:02:30 -0300 |
commit | ddf2555115c11b856580a9f51601a6d409b00e37 (patch) | |
tree | 4e60c7c7c14b91ec0dab72137c5bff04ea957044 /office/texstudio/texstudio.SlackBuild | |
parent | 79114f4486cdafb71bcc842b51d2d99803278794 (diff) | |
download | slackbuilds-ddf2555115c11b856580a9f51601a6d409b00e37.tar.gz |
office/texstudio: Added (LaTeX editor)
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
Diffstat (limited to 'office/texstudio/texstudio.SlackBuild')
-rw-r--r-- | office/texstudio/texstudio.SlackBuild | 92 |
1 files changed, 92 insertions, 0 deletions
diff --git a/office/texstudio/texstudio.SlackBuild b/office/texstudio/texstudio.SlackBuild new file mode 100644 index 0000000000..906ccf1a94 --- /dev/null +++ b/office/texstudio/texstudio.SlackBuild @@ -0,0 +1,92 @@ +#!/bin/sh + +# Slackware build script for texstudio + +# Written by Larry Hajali <larryhaja[at]gmail[dot]com> + +PRGNAM=texstudio +VERSION=2.2 +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="-m64 -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 {} \; + +# Fix .desktop item. +sed -i '/^Encoding/d' utilities/texstudio.desktop + +qmake PREFIX=/usr LIBS+="-L/usr/lib${LIBDIRSUFFIX}" -o Makefile $PRGNAM.pro + +make \ + CFLAGS="-pipe $SLKCFLAGS -D_REENTRANT -Wall -W \$(DEFINES)" \ + CXXFLAGS="-pipe $SLKCFLAGS -D_REENTRANT -Wall -W \$(DEFINES)" +make install INSTALL_ROOT=$PKG + +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/usr/man/man1 +install -m 0644 $CWD/$PRGNAM.1 $PKG/usr/man/man1 +gzip -9 $PKG/usr/man/man?/*.? + +for i in 16 22 32 48 64 128; do + install -D -m 0644 utilities/${PRGNAM}${i}x${i}.png \ + $PKG/usr/share/icons/hicolor/${i}x${i}/apps/$PRGNAM.png +done + +install -D -m 0644 utilities/$PRGNAM.svg \ + $PKG/usr/share/icons/hicolor/scalable/apps/$PRGNAM.svg +rm -rf $PKG/usr/share/pixmaps + +mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION +cp -a \ + INSTALL utilities/{AUTHORS,CHANGELOG.txt,COPYING} \ + $PKG/usr/doc/$PRGNAM-$VERSION +cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild +rm -f $PKG/usr/share/$PRGNAM/{COPYING,CHANGELOG.txt,AUTHORS} + +mkdir -p $PKG/install +cat $CWD/slack-desc > $PKG/install/slack-desc +cat $CWD/doinst.sh > $PKG/install/doinst.sh + +cd $PKG +/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz} |