diff options
author | Kyle Guinn <elyk03@gmail.com> | 2010-05-11 19:46:41 +0200 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2010-05-11 19:46:41 +0200 |
commit | 8ecacc5a988f48e6143b5ac5cdff924a056d251b (patch) | |
tree | 1184a9b74b923a4a1814a826e8de3ced0c479521 /system/t1utils | |
parent | 621145c0469ee23596e8f5ca9462c4adf012ac8c (diff) | |
download | slackbuilds-8ecacc5a988f48e6143b5ac5cdff924a056d251b.tar.gz slackbuilds-8ecacc5a988f48e6143b5ac5cdff924a056d251b.tar.xz |
system/t1utils: Updated for version 1.32
Diffstat (limited to 'system/t1utils')
-rw-r--r-- | system/t1utils/README | 1 | ||||
-rw-r--r-- | system/t1utils/slack-desc | 10 | ||||
-rw-r--r-- | system/t1utils/t1utils.SlackBuild | 5 | ||||
-rw-r--r-- | system/t1utils/t1utils.info | 2 |
4 files changed, 12 insertions, 6 deletions
diff --git a/system/t1utils/README b/system/t1utils/README index 89c805d11e5..a33222bb21d 100644 --- a/system/t1utils/README +++ b/system/t1utils/README @@ -11,4 +11,3 @@ file from a PFA or PFB font. * t1asm: goes the opposite direction * t1unmac: translates a Macintosh Type 1 font into either PFB or PFA format * t1mac: goes the opposite direction - diff --git a/system/t1utils/slack-desc b/system/t1utils/slack-desc index b825c250bfe..f817c6a99e9 100644 --- a/system/t1utils/slack-desc +++ b/system/t1utils/slack-desc @@ -1,4 +1,12 @@ -t1utils: Type 1 Utilities +# 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------------------------------------------------------| +t1utils: t1utils (Type 1 Utilities) t1utils: t1utils: t1utils is a collection of simple type-1 font manipulation programs. t1utils: Together, they allow you to convert between PFA (ASCII) and PFB diff --git a/system/t1utils/t1utils.SlackBuild b/system/t1utils/t1utils.SlackBuild index fef88db754e..a1d37dcd213 100644 --- a/system/t1utils/t1utils.SlackBuild +++ b/system/t1utils/t1utils.SlackBuild @@ -10,7 +10,7 @@ VERSION=1.32 ARCH=${ARCH:-i486} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} -CWD=`pwd` +CWD=$(pwd) TMP=${TMP:-/tmp/SBo} PKG=$TMP/package-$PRGNAM OUTPUT=${OUTPUT:-/tmp} @@ -27,7 +27,6 @@ cd $TMP || exit 1 rm -rf $PRGNAM-$VERSION tar -xzvf $CWD/$PRGNAM-$VERSION.tar.gz || exit 1 cd $PRGNAM-$VERSION || exit 1 - chown -R root:root . chmod -R u+w,go+r-w,a-s . @@ -44,7 +43,7 @@ make install-strip DESTDIR=$PKG || exit 1 if [ -d $PKG/usr/man ]; then ( 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 + for i in $(find . -type l) ; do ln -s $(readlink $i).gz $i.gz ; rm $i ; done ) fi diff --git a/system/t1utils/t1utils.info b/system/t1utils/t1utils.info index fbdd425231c..47bd4296766 100644 --- a/system/t1utils/t1utils.info +++ b/system/t1utils/t1utils.info @@ -5,4 +5,4 @@ DOWNLOAD="http://www.lcdf.org/~eddietwo/type/t1utils-1.32.tar.gz" MD5SUM="733892543a5b852b7e5d87bc58117f53" MAINTAINER="Kyle Guinn" EMAIL="elyk03@gmail.com" -APPROVED="robw810" +APPROVED="rworkman" |