mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-21 19:42:24 +01:00
office/texworks: Added (TeX editor)
This commit is contained in:
parent
101567e1e4
commit
11bb25c113
6 changed files with 113 additions and 0 deletions
6
office/texworks/README
Normal file
6
office/texworks/README
Normal file
|
@ -0,0 +1,6 @@
|
|||
TeXworks is an environment for authoring TeX (LaTeX, ConTeXt, etc)
|
||||
documents, with a Unicode-based, TeX-aware editor, integrated PDF
|
||||
viewer, and a clean, simple interface accessible to casual and
|
||||
non-technical users.
|
||||
|
||||
texworks need "hunspell" to compile.
|
3
office/texworks/doinst.sh
Normal file
3
office/texworks/doinst.sh
Normal file
|
@ -0,0 +1,3 @@
|
|||
if [ -x /usr/bin/update-desktop-database ]; then
|
||||
/usr/bin/update-desktop-database -q usr/share/applications >/dev/null 2>&1
|
||||
fi
|
19
office/texworks/slack-desc
Normal file
19
office/texworks/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------------------------------------------------------|
|
||||
texworks: TeXworks (TeX editor)
|
||||
texworks:
|
||||
texworks: TeXworks is a simple environment for editing, typesetting,
|
||||
texworks: and previewing TeX documents.
|
||||
texworks:
|
||||
texworks: Homepage: http://code.google.com/p/texworks/
|
||||
texworks:
|
||||
texworks:
|
||||
texworks:
|
||||
texworks:
|
||||
texworks:
|
67
office/texworks/texworks.SlackBuild
Normal file
67
office/texworks/texworks.SlackBuild
Normal file
|
@ -0,0 +1,67 @@
|
|||
#!/bin/sh
|
||||
|
||||
# Slackware build script for TeXworks
|
||||
|
||||
# Written by digwtx (wtx358@qq.com)
|
||||
|
||||
PRGNAM=texworks
|
||||
VERSION=${VERSION:-0.2.3}
|
||||
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
|
||||
SLKCFLAGS="-O2 -march=i486 -mtune=i686 -pipe"
|
||||
LIBDIRSUFFIX=""
|
||||
elif [ "$ARCH" = "i686" ]; then
|
||||
SLKCFLAGS="-O2 -march=i686 -pipe"
|
||||
LIBDIRSUFFIX=""
|
||||
elif [ "$ARCH" = "x86_64" ]; then
|
||||
SLKCFLAGS="-O2 -fPIC"
|
||||
LIBDIRSUFFIX="64"
|
||||
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 .
|
||||
|
||||
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
|
||||
|
||||
mkdir -pv $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}
|
8
office/texworks/texworks.desktop
Normal file
8
office/texworks/texworks.desktop
Normal file
|
@ -0,0 +1,8 @@
|
|||
[Desktop Entry]
|
||||
Type=Application
|
||||
Version=0.2.3
|
||||
Name=TeXWorks
|
||||
Comment=Run TeXWorks
|
||||
Icon=TeXworks.png
|
||||
Exec=texworks
|
||||
Terminal=false
|
10
office/texworks/texworks.info
Normal file
10
office/texworks/texworks.info
Normal file
|
@ -0,0 +1,10 @@
|
|||
PRGNAM="texworks"
|
||||
VERSION="0.2.3"
|
||||
HOMEPAGE="http://code.google.com/p/texworks/"
|
||||
DOWNLOAD="http://texworks.googlecode.com/files/texworks-0.2.3.tar.gz"
|
||||
DOWNLOAD_x86_64=""
|
||||
MD5SUM="feb87fdb90725ddb75df6956656253fe"
|
||||
MD5SUM_x86_64=""
|
||||
MAINTAINER="digwtx"
|
||||
EMAIL="wtx358@qq.com"
|
||||
APPROVED="dsomero"
|
Loading…
Reference in a new issue