office/tellico: Updated for version 2.3.

Signed-off-by: Erik Hanson <erik@slackbuilds.org>
This commit is contained in:
Gilcio Amaral 2010-08-15 20:39:29 -05:00 committed by Erik Hanson
parent 2cafab5377
commit a7b4697d98
3 changed files with 13 additions and 10 deletions

View File

@ -12,6 +12,8 @@ right, selected fields are shown in column format, allowing you to sort by any
field. On the bottom is a customizable HTML view of the current entry. The
entry editor is a dialog box where you enter the data.
Recommended (but no hard dependencies) for tellico are the yaz programmer
toolkit, and exempi (which requires the boost library). Buildscripts for
all are available at SlackBuilds.org.
You can even read barcodes with a webcam. The script enable this feature.
Recommended (but no hard dependencies) for tellico are the yaz programmer
toolkit and qjson libraries. They are not included in stock Slackware but
available at SlackBuilds.org.

View File

@ -1,6 +1,8 @@
#!/bin/sh
# SlackBuild script for tellico
# written by Gilcio Amaral <gilcio.amaral@gmail.com>
# Copyright 2007-2008 Michiel van Wessem, Manchester, United Kingdom
# All rights reserved.
#
@ -24,16 +26,14 @@
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
PRGNAM=tellico
VERSION=${VERSION:-2.2}
VERSION=${VERSION:-2.3}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
# Automatically determine the architecture we're building on:
if [ -z "$ARCH" ]; then
case "$( uname -m )" in
i?86) ARCH=i486 ;;
arm*) ARCH=arm ;;
# Unless $ARCH is already set, use uname -m for all other archs:
*) ARCH=$( uname -m ) ;;
esac
fi
@ -80,6 +80,7 @@ cd build
-DCMAKE_INSTALL_PREFIX=/usr \
-DLIB_SUFFIX=${LIBDIRSUFFIX} \
-DMAN_INSTALL_DIR=/usr/man \
-DENABLE_WEBCAM=true \
-DCMAKE_BUILD_TYPE=Release ..
make VERBOSE=1
@ -90,7 +91,7 @@ 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 -p $PKG/usr/doc/$PRGNAM-$VERSION
cp -a AUTHORS COPYING ChangeLog tellico.lsm tellico.tips \
cp -a AUTHORS COMPILING COPYING ChangeLog README \
$PKG/usr/doc/$PRGNAM-$VERSION
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild

View File

@ -1,8 +1,8 @@
PRGNAM="tellico"
VERSION="2.2"
VERSION="2.3"
HOMEPAGE="http://tellico-project.org/"
DOWNLOAD="http://tellico-project.org/files/tellico-2.2.tar.bz2"
MD5SUM="204cc66527f0ba8f8bda48b1f21a3dcd"
DOWNLOAD="http://tellico-project.org/files/tellico-2.3.tar.bz2"
MD5SUM="54936f0b34f612a428d68d5276d6f478"
DOWNLOAD_x86_64=""
MD5SUM_x86_64=""
MAINTAINER="Gilcio Amaral"