diff options
author | Johannes Schoepfer <slackbuilds[at]schoepfer[dot]info> | 2016-11-27 20:56:12 +0000 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2016-12-03 07:17:45 +0700 |
commit | f4ba03f021ab3ef7321f5e2daba474ae7ceab290 (patch) | |
tree | 7e1a37b8c9061be12579ac4344545366e40ad79a /office/texworks/texworks.SlackBuild | |
parent | 338a2749bb8994aeb5449af2193f522a18a0af90 (diff) | |
download | slackbuilds-f4ba03f021ab3ef7321f5e2daba474ae7ceab290.tar.gz |
office/texworks: Updated for version 0.6.1.
Signed-off-by: David Spencer <idlemoor@slackbuilds.org>
Diffstat (limited to 'office/texworks/texworks.SlackBuild')
-rw-r--r-- | office/texworks/texworks.SlackBuild | 91 |
1 files changed, 59 insertions, 32 deletions
diff --git a/office/texworks/texworks.SlackBuild b/office/texworks/texworks.SlackBuild index 5acc768e61..e2f4a104a3 100644 --- a/office/texworks/texworks.SlackBuild +++ b/office/texworks/texworks.SlackBuild @@ -4,16 +4,34 @@ # Written by digwtx (wtx358@qq.com) # Updated by Willy Sudiarto Raharjo +# Copyright 2016 Johannes Schoepfer +# All rights reserved. +# +# Redistribution and use of this script, with or without modification, 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. PRGNAM=texworks -GVERSION=${GVERSION:-0.4.4-r1004} -VERSION=${VERSION:-0.4.4} +VERSION=${VERSION:-0.6.1} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} if [ -z "$ARCH" ]; then case "$( uname -m )" in - i?86) ARCH=i486 ;; + i?86) ARCH=i586 ;; arm*) ARCH=arm ;; *) ARCH=$( uname -m ) ;; esac @@ -24,11 +42,11 @@ TMP=${TMP:-/tmp/SBo} PKG=$TMP/package-$PRGNAM OUTPUT=${OUTPUT:-/tmp} -if [ "$ARCH" = "i486" ]; then - SLKCFLAGS="-O2 -march=i486 -mtune=i686 -pipe" +if [ "$ARCH" = "i586" ]; then + SLKCFLAGS="-O2 -march=i586 -mtune=i686" LIBDIRSUFFIX="" elif [ "$ARCH" = "i686" ]; then - SLKCFLAGS="-O2 -march=i686 -pipe" + SLKCFLAGS="-O2 -march=i686" LIBDIRSUFFIX="" elif [ "$ARCH" = "x86_64" ]; then SLKCFLAGS="-O2 -fPIC" @@ -43,40 +61,49 @@ set -e rm -rf $PKG mkdir -p $TMP $PKG $OUTPUT cd $TMP -rm -rf $PRGNAM-$VERSION -tar xvf $CWD/$PRGNAM-$GVERSION.tar.gz -cd $PRGNAM-$VERSION +rm -rf $PRGNAM-release-$VERSION +tar xvf $CWD/$PRGNAM-release-$VERSION.tar.gz +cd $PRGNAM-release-$VERSION chown -R root:root . find -L . \ - \( -perm 777 -o -perm 775 -o -perm 750 -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 {} \; + \( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \ + -o -perm 511 \) -exec chmod 755 {} \; -o \ + \( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \ + -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \; + +( mkdir build + cd build + #-DWITH_LUA='ON' \ + cmake \ + -DCMAKE_C_FLAGS:STRING="$SLKCFLAGS" \ + -DCMAKE_CXX_FLAGS:STRING="$SLKCFLAGS" \ + -DCMAKE_INSTALL_PREFIX=/usr \ + -DTeXworks_PLUGIN_DIR="/usr/lib$LIBDIRSUFFIX/texworks" \ + -DTW_BUILD_ID='slackbuilds.org' \ + -DWITH_PYTHON='ON' \ + -DDESIRED_QT_VERSION:STRING=4 \ + -DCMAKE_BUILD_TYPE=Release .. + make + make install DESTDIR=$PKG +) + +#-DMAN_INSTALL_DIR=/usr/man doesn't work here +mkdir -p $PKG/usr/man/man1 +cat $PKG/usr/share/man/man1/texworks.1 | gzip > $PKG/usr/man/man1/texworks.1.gz +rm -rf $PKG/usr/share/man + +( mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION + cd $PKG/usr/share/doc/texworks + mv COPYING NEWS README.md $PKG/usr/doc/$PRGNAM-$VERSION +) +rm -rf $PKG/usr/share/doc -qmake -unix PREFIX=/usr \ - QMAKE_CFLAGS_RELEASE="$SLKCFLAGS" \ - QMAKE_CXXFLAGS_RELEASE="$SLKCFLAGS" - -make || exit 1 - -mkdir -pv $PKG/usr/bin -mkdir -pv $PKG/usr/share/pixmaps -mkdir -pv $PKG/usr/share/applications - -cp texworks $PKG/usr/bin/ -cp res/images/TeXworks.png $PKG/usr/share/pixmaps -cp $CWD/texworks.desktop $PKG/usr/share/applications - -mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION -cp -a \ - COPYING README \ - $PKG/usr/doc/$PRGNAM-$VERSION cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild 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 -pv $PKG/install +mkdir -p $PKG/install cat $CWD/slack-desc > $PKG/install/slack-desc cat $CWD/doinst.sh > $PKG/install/doinst.sh |