academic/gtypist: Updated for version 2.8.3

This commit is contained in:
Grigorios Bouzakis 2010-05-12 17:36:39 +02:00 committed by David Somero
parent 5191e3fb5e
commit 761d3a945b
2 changed files with 9 additions and 7 deletions

View File

@ -5,7 +5,7 @@
# Written by Grigorios Bouzakis (grbzks@gmail.com)
PRGNAM=gtypist
VERSION=${VERSION:-2.8.1}
VERSION=${VERSION:-2.8.3}
ARCH=${ARCH:-i486}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
@ -31,7 +31,7 @@ rm -rf $PKG
mkdir -p $TMP $PKG $OUTPUT
cd $TMP
rm -rf $PRGNAM-$VERSION
tar xvf $CWD/$PRGNAM-$VERSION.tar.bz2
tar xvf $CWD/$PRGNAM-$VERSION.tar.gz
cd $PRGNAM-$VERSION
chown -R root:root .
find . \
@ -53,8 +53,10 @@ make
make install DESTDIR=$PKG
( cd $PKG
find . | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true
find . | xargs file | grep "shared object" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null
find . | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | \
xargs strip --strip-unneeded 2> /dev/null || true
find . | xargs file | grep "shared object" | grep ELF | cut -f 1 -d : | \
xargs strip --strip-unneeded 2> /dev/null
)
( cd $PKG/usr/man

View File

@ -1,8 +1,8 @@
PRGNAM="gtypist"
VERSION="2.8.1"
VERSION="2.8.3"
HOMEPAGE="http://www.gnu.org/software/gtypist/"
DOWNLOAD="ftp://ftp.gnu.org/gnu/gtypist/gtypist-2.8.1.tar.bz2"
MD5SUM="88f1b19602a656494e44a1ce8f9e5318"
DOWNLOAD="ftp://ftp.gnu.org/gnu/gtypist/gtypist-2.8.3.tar.gz"
MD5SUM="ea3c7faa01d7052c156d50fa0e0506b8"
MAINTAINER="Grigorios Bouzakis"
EMAIL="grbzks@gmail.com"
APPROVED="dsomero"