diff options
author | Ben Collver <bencollver@gmail.com> | 2010-05-13 01:00:39 +0200 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-13 01:00:39 +0200 |
commit | eb04222ae572609e18be1fd57ad8bde786819348 (patch) | |
tree | 9369602ef41c8432b01536df902830f2fe6e1d2d /office | |
parent | edf747d9be804b1021c43d657d630297ca0c4fcc (diff) | |
download | slackbuilds-eb04222ae572609e18be1fd57ad8bde786819348.tar.gz |
office/wink: Added to 13.0 repository
Diffstat (limited to 'office')
-rw-r--r-- | office/wink/README | 5 | ||||
-rw-r--r-- | office/wink/slack-desc | 19 | ||||
-rw-r--r-- | office/wink/wink.SlackBuild | 66 | ||||
-rw-r--r-- | office/wink/wink.info | 10 |
4 files changed, 100 insertions, 0 deletions
diff --git a/office/wink/README b/office/wink/README new file mode 100644 index 0000000000..b179e358da --- /dev/null +++ b/office/wink/README @@ -0,0 +1,5 @@ +Wink is a Tutorial and Presentation creation software, primarily aimed +at creating tutorials on how to use software (like a tutor for +MS-Word/Excel etc). Using Wink you can capture screenshots, add +explanations boxes, buttons, titles etc and generate a highly effective +tutorial for your users. diff --git a/office/wink/slack-desc b/office/wink/slack-desc new file mode 100644 index 0000000000..9edd4a0f1b --- /dev/null +++ b/office/wink/slack-desc @@ -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------------------------------------------------------| +wink: wink (presentation creator) +wink: +wink: Wink is a Tutorial and Presentation creation software, primarily +wink: aimed at creating tutorials on how to use software (like a tutor for +wink: MS-Word/Excel etc). Using Wink you can capture screenshots, add +wink: xplanations boxes, buttons, titles etc and generate a highly +wink: effective tutorial for your users. +wink: +wink: Homepage: http://www.debugmode.com/wink/ +wink: +wink: diff --git a/office/wink/wink.SlackBuild b/office/wink/wink.SlackBuild new file mode 100644 index 0000000000..30e8d6bc3e --- /dev/null +++ b/office/wink/wink.SlackBuild @@ -0,0 +1,66 @@ +#!/bin/sh +PRGNAM=wink +VERSION=${VERSION:-1.5} +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" + LIBDIRSUFFIX="" +elif [ "$ARCH" = "i686" ]; then + SLKCFLAGS="-O2 -march=i686 -mtune=i686" + 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 +mkdir $PRGNAM-$VERSION +cd $PRGNAM-$VERSION +tar xvf $CWD/wink15.tar.gz +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 {} \; + +mkdir -p $PKG/usr/share/wink +cd $PKG/usr/share/wink +tar xvf $TMP/$PRGNAM-$VERSION/installdata.tar.gz +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 {} \; + +mkdir -p $PKG/usr/bin +cat >$PKG/usr/bin/wink <<__EOF__ +#!/bin/sh +WINK_INSTALL_DIR=/usr/share/wink /usr/share/wink/wink +__EOF__ +chmod a+rx $PKG/usr/bin/wink + +mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION +cd $PKG/usr/doc/$PRGNAM-$VERSION +mv $PKG/usr/share/wink/{changelog,license,readme}.txt . +ln -s "/usr/share/wink/Docs/Wink User Guide.pdf" "Wink User Guide.pdf" + +mkdir $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} diff --git a/office/wink/wink.info b/office/wink/wink.info new file mode 100644 index 0000000000..d87a7a26d4 --- /dev/null +++ b/office/wink/wink.info @@ -0,0 +1,10 @@ +PRGNAM="wink" +VERSION="1.5" +HOMEPAGE="http://www.debugmode.com/wink/" +DOWNLOAD="http://yet.another.linux-nerd.com/wink/download/wink15.tar.gz" +MD5SUM="be2d80bcf3fdfe1a403674d789aed9db" +DOWNLOAD_x86_64="" +MD5SUM_x86_64="" +MAINTAINER="Ben Collver" +EMAIL="bencollver@gmail.com" +APPROVED="dsomero" |