office/wink: Added to 13.0 repository

This commit is contained in:
Ben Collver 2010-05-13 01:00:39 +02:00 committed by David Somero
parent edf747d9be
commit eb04222ae5
4 changed files with 100 additions and 0 deletions

5
office/wink/README Normal file
View file

@ -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.

19
office/wink/slack-desc Normal file
View 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------------------------------------------------------|
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:

View file

@ -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}

10
office/wink/wink.info Normal file
View file

@ -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"