mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-16 19:50:19 +01:00
graphics/mftrace: Updated for version 1.2.16.
This commit is contained in:
parent
1bc5e948b7
commit
6911339701
3 changed files with 22 additions and 20 deletions
|
@ -4,11 +4,4 @@ advantages over bitmaps, as they allow PostScript files to render correctly on
|
|||
printers with many resolutions. Moreover, Ghostscript can generate much
|
||||
better PDF, if given scalable fonts.
|
||||
|
||||
Dependencies:
|
||||
* A tracing program
|
||||
autotrace >= 0.30 (http://autotrace.sourceforge.net)
|
||||
or potrace (http://potrace.sourceforge.net)
|
||||
Potrace is recommended as it runs quicker than autotrace, and it is
|
||||
also available from SlackBuilds.org.
|
||||
* t1utils (also available at SlackBuilds.org)
|
||||
* FontForge is recommended.
|
||||
This requires potrace and t1utils, and fontforge is optional but recommended.
|
||||
|
|
|
@ -3,14 +3,21 @@
|
|||
# Slackware build script for mftrace
|
||||
# Written by Kyle Guinn
|
||||
|
||||
set -e
|
||||
|
||||
PRGNAM=mftrace
|
||||
VERSION=1.2.15
|
||||
ARCH=${ARCH:-i486}
|
||||
VERSION=1.2.16
|
||||
BUILD=${BUILD:-1}
|
||||
TAG=${TAG:-_SBo}
|
||||
|
||||
# Automatically determine the architecture we're building on:
|
||||
if [ -z "$ARCH" ]; then
|
||||
case "$( uname -m )" in
|
||||
i?86) export ARCH=i486 ;;
|
||||
arm*) export ARCH=arm ;;
|
||||
# Unless $ARCH is already set, use uname -m for all other archs:
|
||||
*) export ARCH=$( uname -m ) ;;
|
||||
esac
|
||||
fi
|
||||
|
||||
CWD=$(pwd)
|
||||
TMP=${TMP:-/tmp/SBo}
|
||||
PKG=$TMP/package-$PRGNAM
|
||||
|
@ -24,9 +31,14 @@ elif [ "$ARCH" = "i686" ]; then
|
|||
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
|
||||
|
@ -54,10 +66,7 @@ make install DESTDIR=$PKG
|
|||
find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \
|
||||
| cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true
|
||||
|
||||
( cd $PKG/usr/man
|
||||
find . -type f -exec gzip -9 {} \;
|
||||
for i in $(find . -type l) ; do ln -s $(readlink $i).gz $i.gz ; rm $i ; done
|
||||
)
|
||||
find $PKG/usr/man -type f -exec gzip -9 {} \;
|
||||
|
||||
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cp -a COPYING ChangeLog README* $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
PRGNAM="mftrace"
|
||||
VERSION="1.2.15"
|
||||
VERSION="1.2.16"
|
||||
HOMEPAGE="http://www.lilypond.org/mftrace/"
|
||||
DOWNLOAD="http://lilypond.org/download/sources/mftrace/mftrace-1.2.15.tar.gz"
|
||||
MD5SUM="88c121f7046b3950518edd74ff9fbb35"
|
||||
DOWNLOAD="http://lilypond.org/download/sources/mftrace/mftrace-1.2.16.tar.gz"
|
||||
MD5SUM="1c65846471db8f10902b96b7b3120da5"
|
||||
DOWNLOAD_x86_64=""
|
||||
MD5SUM_x86_64=""
|
||||
MAINTAINER="Kyle Guinn"
|
||||
EMAIL="elyk03@gmail.com"
|
||||
APPROVED="rworkman,pprkut"
|
||||
APPROVED="rworkman"
|
||||
|
|
Loading…
Reference in a new issue