diff options
author | Samuel Young <samyoung12788@gmail.com> | 2023-06-17 08:49:12 +0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2023-06-17 08:49:12 +0700 |
commit | 1b9a3d9a672794d9a6c63099a14e2ae4a1860cdb (patch) | |
tree | 82efd18ce2b2d378f39ca02b99162e9bdd82d6ba /system/tewi-font | |
parent | bc3ea99a83dfa8428fb71cbe9e162280cf84acac (diff) |
system/tewi-font: Added (small bitmap font).
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'system/tewi-font')
-rw-r--r-- | system/tewi-font/README | 5 | ||||
-rw-r--r-- | system/tewi-font/doinst.sh | 12 | ||||
-rw-r--r-- | system/tewi-font/slack-desc | 19 | ||||
-rw-r--r-- | system/tewi-font/tewi-font.SlackBuild | 73 | ||||
-rw-r--r-- | system/tewi-font/tewi-font.info | 10 |
5 files changed, 119 insertions, 0 deletions
diff --git a/system/tewi-font/README b/system/tewi-font/README new file mode 100644 index 0000000000000..212abfb9373ec --- /dev/null +++ b/system/tewi-font/README @@ -0,0 +1,5 @@ +tewi-font (Small bitmap font) + +Tewi is a bitmap font, readable even at very small font sizes. This is +particularily useful while programming, to fit a lot of code on your +screen. diff --git a/system/tewi-font/doinst.sh b/system/tewi-font/doinst.sh new file mode 100644 index 0000000000000..440f45861f4c2 --- /dev/null +++ b/system/tewi-font/doinst.sh @@ -0,0 +1,12 @@ +if [ -x /usr/bin/mkfontdir -o -x /usr/X11R6/bin/mkfontdir ]; then + ( cd /usr/share/fonts/misc + mkfontdir . + ) +fi +if [ -x /usr/bin/xset ]; then + /usr/bin/xset +fp /usr/share/fonts/misc + /usr/bin/xset fp rehash +fi +if [ -x /usr/bin/fc-cache ]; then + /usr/bin/fc-cache -f +fi diff --git a/system/tewi-font/slack-desc b/system/tewi-font/slack-desc new file mode 100644 index 0000000000000..fbaa8482270f3 --- /dev/null +++ b/system/tewi-font/slack-desc @@ -0,0 +1,19 @@ +# 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 ':' except on otherwise blank lines. + + |-----handy-ruler------------------------------------------------------| +tewi-font: tewi-font (Small bitmap font) +tewi-font: +tewi-font: Tewi is a bitmap font, readable even at very small font sizes. This +tewi-font: is particularily useful while programming, to fit a lot of code on +tewi-font: your screen. +tewi-font: +tewi-font: +tewi-font: +tewi-font: +tewi-font: Homepage: https://github.com/lucy/tewi-font +tewi-font: diff --git a/system/tewi-font/tewi-font.SlackBuild b/system/tewi-font/tewi-font.SlackBuild new file mode 100644 index 0000000000000..73425103f73d8 --- /dev/null +++ b/system/tewi-font/tewi-font.SlackBuild @@ -0,0 +1,73 @@ +#!/bin/bash + +# Slackware build script for tewi-font + +# Copyright 2023 Samuel Young, MO, USA +# All rights reserved. +# +# Redistribution and use of this script, with or without modification, is +# permitted provided that the following conditions are met: +# +# 1. Redistributions of this script must retain the above copyright +# notice, this list of conditions and the following disclaimer. +# +# THIS SOFTWARE IS PROVIDED BY THE AUTHOR "AS IS" AND ANY EXPRESS OR IMPLIED +# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO +# EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, +# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; +# OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, +# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR +# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF +# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +cd $(dirname $0) ; CWD=$(pwd) + +PRGNAM=tewi-font +VERSION=${VERSION:-2.0.2} +BUILD=${BUILD:-1} +TAG=${TAG:-_SBo} +PKGTYPE=${PKGTYPE:-tgz} +ARCH=noarch + +if [ ! -z "${PRINT_PACKAGE_NAME}" ]; then + echo "$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE" + exit 0 +fi + +TMP=${TMP:-/tmp/SBo} +PKG=$TMP/package-$PRGNAM +OUTPUT=${OUTPUT:-/tmp} + +set -e + +rm -rf $PKG +mkdir -p $TMP $PKG $OUTPUT +cd $TMP +rm -rf $PRGNAM-$VERSION +tar xvf $CWD/$PRGNAM-$VERSION.tar.gz +cd $PRGNAM-$VERSION +chown -R root:root . +find -L . \ + \( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \ + -o -perm 511 \) -exec chmod 755 {} \; -o \ + \( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \ + -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \; + +make +mkdir -p $PKG/usr/share/fonts/misc +cp out/*.pcf.gz $PKG/usr/share/fonts/misc/ + +mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION +cp -a \ + README.md LICENSE \ + $PKG/usr/doc/$PRGNAM-$VERSION +cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild + +mkdir -p $PKG/install +cat $CWD/slack-desc > $PKG/install/slack-desc +cat $CWD/doinst.sh > $PKG/install/doinst.sh + +cd $PKG +/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE diff --git a/system/tewi-font/tewi-font.info b/system/tewi-font/tewi-font.info new file mode 100644 index 0000000000000..c15db1ce32d96 --- /dev/null +++ b/system/tewi-font/tewi-font.info @@ -0,0 +1,10 @@ +PRGNAM="tewi-font" +VERSION="2.0.2" +HOMEPAGE="https://github.com/lucy/tewi-font" +DOWNLOAD="https://github.com/lucy/tewi-font/archive/2.0.2/tewi-font-2.0.2.tar.gz" +MD5SUM="965a9a9b47b8e61e4fd6750b467d9b7a" +DOWNLOAD_x86_64="" +MD5SUM_x86_64="" +REQUIRES="" +MAINTAINER="Samuel Young" +EMAIL="samyoung12788@gmail.com" |