mirror of
https://codeberg.org/gwh/slackbuilds.git
synced 2024-11-16 19:51:19 +01:00
add this (forgot from where for now...)
This commit is contained in:
parent
da42e8d78f
commit
9e669f8708
1 changed files with 67 additions and 0 deletions
67
fonts/Bodoni-SvtyTwo-OS-ITC-TT/Bodoni-SvtyTwo-OS-ITC-TT.SlackBuild
Executable file
67
fonts/Bodoni-SvtyTwo-OS-ITC-TT/Bodoni-SvtyTwo-OS-ITC-TT.SlackBuild
Executable file
|
@ -0,0 +1,67 @@
|
|||
#!/bin/sh
|
||||
|
||||
PRGNAM=Bodoni-SvtyTwo-OS-ITC-TT
|
||||
VERSION=${VERSION:-$(date +"%Y.%m.%d_%H:%M")}
|
||||
ARCH=font
|
||||
BUILD=${BUILD:-1}
|
||||
TAG=${TAG:-cyco}
|
||||
|
||||
CWD=$(pwd)
|
||||
|
||||
# Place to build (TMP) package (PKG) and output (OUTPUT) the program:
|
||||
PKG=$TMP/package-$PRGNAM
|
||||
TMP=/tmp
|
||||
OUTPUT=${OUTPUT:-/tmp}
|
||||
|
||||
# Create working directories:
|
||||
mkdir -p $OUTPUT # place for the package to be saved
|
||||
mkdir -p $PKG # place for the package to be built
|
||||
rm -rf $PKG/* # always erase old package's contents
|
||||
rm -rf $OUTPUT/{configure,make,install,error,makepkg}-$PRGNAM.log
|
||||
# remove old log files
|
||||
|
||||
FONTDIR="/usr/share/fonts"
|
||||
|
||||
# Move the fonts into place:
|
||||
mkdir -p $PKG$FONTDIR/TTF
|
||||
|
||||
( cd $PKG$FONTDIR/TTF
|
||||
for fnt in bold.ttf bolditalic.ttf italic.ttf book.ttf ; do
|
||||
[ ! -e $CWD/$fnt ] && ( cd $CWD ; wget -c http://foohack.com/tpl/fonts/$PRGNAM/$fnt )
|
||||
cp $CWD/$fnt ./$PRGNAM-$fnt
|
||||
done
|
||||
)
|
||||
|
||||
# Post-install script:
|
||||
mkdir -p $PKG/install
|
||||
cat <<EOT > $PKG/install/doinst.sh
|
||||
# Update X font indexes and the font cache:
|
||||
if [ -x .$XPREF/bin/mkfontdir ]; then
|
||||
chroot . $XPREF/bin/mkfontscale $FONTDIR
|
||||
chroot . $XPREF/bin/mkfontdir $FONTDIR
|
||||
fi
|
||||
if [ -x .$XPREF/bin/fc-cache ]; then
|
||||
chroot . $XPREF/bin/fc-cache -f $FONTDIR
|
||||
fi
|
||||
EOT
|
||||
|
||||
# Add a package description:
|
||||
mkdir -p $PKG/install
|
||||
cat <<EOF > $PKG/install/slack-desc
|
||||
$PRGNAM: $PRGNAM (font)
|
||||
$PRGNAM:
|
||||
$PRGNAM:
|
||||
$PRGNAM:
|
||||
$PRGNAM:
|
||||
$PRGNAM:
|
||||
$PRGNAM:
|
||||
$PRGNAM:
|
||||
$PRGNAM:
|
||||
$PRGNAM:
|
||||
$PRGNAM:
|
||||
EOF
|
||||
|
||||
# Build the package:
|
||||
cd $PKG
|
||||
makepkg --linkadd y --chown n $OUTPUT/${PRGNAM}-${VERSION}-${ARCH}-${BUILD}${TAG}.txz
|
||||
|
Loading…
Reference in a new issue