diff options
author | pomfland <pomfland@tfwno.gf> | 2022-03-30 20:50:43 +0100 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2022-04-02 18:19:16 +0700 |
commit | db41eea5512d80542bf703020717cfd8d4f22a61 (patch) | |
tree | 226bce017b0dd8288a2ce2d89f6f60d14cf7b7b9 /system/ttf-doulos-sil/ttf-doulos-sil.SlackBuild | |
parent | d4611f7886a6ad26b08e5c7349e723cac50f98f5 (diff) |
system/ttf-doulos-sil: Updated for version 6.101.
Added back in comments in slack-desc.
Changed mode of read-only files.
Signed-off-by: Dave Woodfall <dave@slackbuilds.org>
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'system/ttf-doulos-sil/ttf-doulos-sil.SlackBuild')
-rw-r--r-- | system/ttf-doulos-sil/ttf-doulos-sil.SlackBuild | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/system/ttf-doulos-sil/ttf-doulos-sil.SlackBuild b/system/ttf-doulos-sil/ttf-doulos-sil.SlackBuild index c37305c3d891..3ebcf10cc8cd 100644 --- a/system/ttf-doulos-sil/ttf-doulos-sil.SlackBuild +++ b/system/ttf-doulos-sil/ttf-doulos-sil.SlackBuild @@ -1,9 +1,10 @@ #!/bin/bash +# @(#) ttf-doulos-sil.SlackBuild 1.2@(#) + # Slackware build script for ttf-doulos-sil -# $Id: ttf-doulos-sil.SlackBuild,v 1.1 2018/09/23 19:06:07 pomf Exp pomf $ -# Copyright 2018 pomfland +# Copyright 2022 pomfland # All rights reserved. # # Redistribution and use of this script, with or without modification, is @@ -26,7 +27,7 @@ cd $(dirname $0) ; CWD=$(pwd) PRGNAM=ttf-doulos-sil -VERSION=${VERSION:-5.000} +VERSION=${VERSION:-6.101} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} PKGTYPE=${PKGTYPE:-tgz} @@ -35,9 +36,6 @@ SRCNAM=DoulosSIL ARCH=noarch -# If the variable PRINT_PACKAGE_NAME is set, then this script will report what -# the name of the created package would be, and then exit. This information -# could be useful to other scripts. if [ ! -z "${PRINT_PACKAGE_NAME}" ]; then echo "$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE" exit 0 @@ -63,7 +61,7 @@ find -L . \ -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \; mkdir -p $PKG/usr/share/fonts/TTF -cp $SRCNAM-R.ttf $PKG/usr/share/fonts/TTF +cp *.ttf $PKG/usr/share/fonts/TTF mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION cp -ar documentation *.txt $PKG/usr/doc/$PRGNAM-$VERSION |