summaryrefslogtreecommitdiffstats
path: root/accessibility/fonts-opendyslexic/fonts-opendyslexic.SlackBuild
blob: 751eda35256e6198447e12a90b4861303e097869 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
#!/bin/bash

# Slackware build script for fonts-opendyslexic

# Written by B. Watson (urchlay@slackware.uk)

# Licensed under the WTFPL. See http://www.wtfpl.net/txt/copying/ for details.

# Yes, I know, there are newer versions of this at github. However,
# they lack the compiled OpenDyslexicMono (terminal) font, and the tools
# required to compile the source would require me submitting 15 or 20
# python SlackBuilds for the tools and all their deps. Not interested.

# The Debian package only includes the .otf fonts. That's what I'll do
# by default, but I'll support installing the other types if needed.

# 20230307 bkw: BUILD=2, add douninst.sh.

cd $(dirname $0) ; CWD=$(pwd)

PRGNAM=fonts-opendyslexic
VERSION=${VERSION:-20160623}
BUILD=${BUILD:-2}
TAG=${TAG:-_SBo}
PKGTYPE=${PKGTYPE:-tgz}

SRCDIR=open-dyslexic-$VERSION-Stable

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 $SRCDIR
tar xvf $CWD/${PRGNAM}_$VERSION.orig.tar.gz
cd $SRCDIR
chown -R root:root .
# rotten upstream perms, do not revert to template please.
find . -type d -exec chmod 755 {} \+
find . -type f -exec chmod 644 {} \+

# See README
FORMATS="$( echo ${FORMATS:-otf} | tr A-Z a-z )"
ALLFMT="otf ttf eot woff svg"
[ "$FORMATS" = "all" ] && FORMATS="$ALLFMT"

for i in $FORMATS; do
  ok=0
  for j in $ALLFMT; do
    [ "$i" = "$j" ] && ok=1
  done
  if [ "$ok" != "1" ]; then
    cat <<EOF
***
*** Unsupported font format '$i'. Supported formats are: $ALLFMT all
***
EOF
    exit 1
  fi
done

mkdir -p $PKG/usr/share/fonts
for fmt in $FORMATS; do
  FMT=$( echo $fmt | tr a-z A-Z )
  cp -a $fmt $PKG/usr/share/fonts/$FMT
  [ "$FMT" = "TTF" -o "$FMT" = "OTF" ] && MKFDIRS+="$FMT "
  DESCFMT+=" $FMT"
done

# I thought about including screenshots/ in the doc dir, but they're
# more like an advertisement (anyone building this package has already
# "bought" the product).
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
cp -a README* $PKG/usr/doc/$PRGNAM-$VERSION
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild

mkdir -p $PKG/install

sed "s,@DESCFMT@,$DESCFMT," $CWD/slack-desc > $PKG/install/slack-desc

# Only install doinst.sh if TTF and/or OTF fonts are included, because
# fc-cache and X only know about these 2 types.
# 20230307 bkw: the same code works to clean up after removepkg.
if [ -n "$MKFDIRS" ]; then
  sed "s,@MKFDIRS@,$MKFDIRS," $CWD/doinst.sh > $PKG/install/doinst.sh
  cp $PKG/install/doinst.sh $PKG/install/douninst.sh
fi

cd $PKG
/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE