office/verbiste: Added (a French conjugation system)
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
This commit is contained in:
parent
8a343d2bc3
commit
3addaf5bf4
|
@ -0,0 +1,10 @@
|
|||
Verbiste is a French conjugation system.
|
||||
|
||||
Verbiste contains a C++ library, two programs (a french-conjugator and a
|
||||
french-deconjugator) that can be run from the command line or from another
|
||||
program, and a GTK application (verbiste-gtk). The knowledge base is
|
||||
represented in XML and contains over 7000 verbs There is also a small
|
||||
Italian dictionary of 120 verbs. The graphical interface lets the user
|
||||
look up a verb in one or both languages.
|
||||
|
||||
This requires wxGTK.
|
|
@ -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------------------------------------------------------|
|
||||
verbiste: Verbiste (a French conjugation system)
|
||||
verbiste:
|
||||
verbiste: Verbiste Contains a C++ library and two command line programs to
|
||||
verbiste: conjugate and analyze conjugated verbs and can be run from the
|
||||
verbiste: command line or from another program, and it also contains a GTK
|
||||
verbiste: application (verbiste-gtk). The knowledge base is represented in
|
||||
verbiste: XML and contains over 7000 verbs. There is also a small Italian
|
||||
verbiste: dictionary of 120 verbs. The graphicalinterface lets the user look
|
||||
verbiste: up a verb in one or both languages.
|
||||
verbiste:
|
||||
verbiste: Webpage : http://sarrazip.com/dev/verbiste.html
|
|
@ -0,0 +1,81 @@
|
|||
#!/bin/sh
|
||||
#
|
||||
# Didier Charles 2010.07.07
|
||||
# dcharles@alumni.concordia.ca
|
||||
# written with the grateful assistance of the tutorial
|
||||
# "Writing A SlackBuild Script" at :
|
||||
# http://www.slackwiki.org/Writing_A_SlackBuild_Script
|
||||
# and with the guidance of the templates at:
|
||||
# http://slackbuilds.org/templates/
|
||||
#
|
||||
|
||||
PRGNAM=verbiste
|
||||
VERSION=${VERSION:-0.1.30}
|
||||
BUILD=${BUILD:-1}
|
||||
TAG=${TAG:-_SBo}
|
||||
|
||||
CWD=$(pwd)
|
||||
TMP=${TMP:-/tmp/SBo}
|
||||
PKG=$TMP/package-$PRGNAM
|
||||
OUTPUT=${OUTPUT:-/tmp}
|
||||
|
||||
if [ -z "$ARCH" ]; then
|
||||
case "$( uname -m )" in
|
||||
i?86) ARCH=i486 ;;
|
||||
arm*) ARCH=arm ;;
|
||||
*) ARCH=$( uname -m ) ;;
|
||||
esac
|
||||
fi
|
||||
|
||||
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"
|
||||
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 .
|
||||
chmod -R u+w,go+r-w,a-s .
|
||||
|
||||
CFLAGS="$SLKCFLAGS" \
|
||||
./configure \
|
||||
--prefix=/usr/ \
|
||||
--sysconfdir=/etc \
|
||||
--localstatedir=/var \
|
||||
--libdir=/usr/lib$LIBDIRSUFFIX \
|
||||
--with-gtk-app \
|
||||
--build=$ARCH-slackware-linux
|
||||
|
||||
make
|
||||
make install-strip DESTDIR=$PKG
|
||||
|
||||
mkdir -p $PKG/usr/share/applications/
|
||||
cat $CWD/$PRGNAM.desktop > $PKG/usr/share/applications/$PRGNAM.desktop
|
||||
|
||||
mv $PKG/usr/share/doc/ $PKG/usr/
|
||||
find $PKG/usr/doc/$PRGNAM-$VERSION -type f -exec chmod 644 {} \;
|
||||
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
|
||||
|
||||
mv $PKG/usr/share/man $PKG/usr/
|
||||
find $PKG/usr/man -type f -exec gzip -9 {} \;
|
||||
|
||||
mkdir -p $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}
|
|
@ -0,0 +1,15 @@
|
|||
[Desktop Entry]
|
||||
Icon=verbiste
|
||||
Name=Verbiste
|
||||
Name[fr]=Verbiste
|
||||
Name[en_GB]=Verbiste
|
||||
GenericName=French conjugation system
|
||||
GenericName[fr]=système de conjugaison française
|
||||
GenericName[en_GB]=French conjugation system
|
||||
Comment=
|
||||
Comment[fr]=
|
||||
Comment[en_GB]=
|
||||
Exec=verbiste-gtk %u
|
||||
Terminal=false
|
||||
Type=Application
|
||||
Categories=Education;Languages;Office;
|
|
@ -0,0 +1,10 @@
|
|||
PRGNAM="verbiste"
|
||||
VERSION="0.1.30"
|
||||
HOMEPAGE="http://sarrazip.com/dev/verbiste.html"
|
||||
DOWNLOAD="http://perso.b2b2c.ca/sarrazip/dev/verbiste-0.1.30.tar.gz"
|
||||
MD5SUM="e81591746660f763f8cd7eea49bacbe4"
|
||||
DOWNLOAD_x86_64=""
|
||||
MD5SUM_x86_64=""
|
||||
MAINTAINER="Didier Charles"
|
||||
EMAIL="dcharles@alumni.concordia.ca"
|
||||
APPROVED="rworkman"
|
Loading…
Reference in New Issue