mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-16 19:50:19 +01:00
system/ohsnap: Added (monospaced font).
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
This commit is contained in:
parent
31938001a0
commit
73199d505a
5 changed files with 83 additions and 0 deletions
1
system/ohsnap/README
Normal file
1
system/ohsnap/README
Normal file
|
@ -0,0 +1 @@
|
|||
Monospaced font based on Artwiz Snap with bold and versions with status icons.
|
3
system/ohsnap/doinst.sh
Normal file
3
system/ohsnap/doinst.sh
Normal file
|
@ -0,0 +1,3 @@
|
|||
#!/bin/sh
|
||||
|
||||
( cd usr/share/fonts/misc; mkfontscale; mkfontdir )
|
50
system/ohsnap/ohsnap.SlackBuild
Normal file
50
system/ohsnap/ohsnap.SlackBuild
Normal file
|
@ -0,0 +1,50 @@
|
|||
#!/bin/sh
|
||||
|
||||
# Slackware package build script for ohsnap
|
||||
|
||||
# Written by Ian D. Brunton <iandbrunton at gmail dot com>
|
||||
# Maintained by Ian D. Brunton <iandbrunton at gmail dot com>
|
||||
# Redistribution and use with or without modification are permitted.
|
||||
# There is ABSOLUTELY NO WARRANTY, express or implied.
|
||||
|
||||
PRGNAM=ohsnap
|
||||
VERSION=${VERSION:-1.8.0}
|
||||
BUILD=${BUILD:-1}
|
||||
TAG=${TAG:-_SBo}
|
||||
ARCH=noarch
|
||||
|
||||
CWD=$(pwd)
|
||||
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 {} \;
|
||||
|
||||
install -d $PKG/usr/share/fonts/misc $PKG/usr/share/kbd/consolefonts
|
||||
gzip -9 *.pcf
|
||||
cp *.pcf.gz $PKG/usr/share/fonts/misc
|
||||
cp *.psfu $PKG/usr/share/kbd/consolefonts
|
||||
|
||||
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cp -a README.ohsnap $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:-tgz}
|
10
system/ohsnap/ohsnap.info
Normal file
10
system/ohsnap/ohsnap.info
Normal file
|
@ -0,0 +1,10 @@
|
|||
PRGNAM="ohsnap"
|
||||
VERSION="1.8.0"
|
||||
HOMEPAGE="http://sourceforge.net/projects/osnapfont/"
|
||||
DOWNLOAD="http://downloads.sourceforge.net/project/osnapfont/ohsnap-1.8.0.tar.gz"
|
||||
MD5SUM="aeb3d8e1f9634900036f886a14b3b03a"
|
||||
DOWNLOAD_x86_64=""
|
||||
MD5SUM_x86_64=""
|
||||
REQUIRES=""
|
||||
MAINTAINER="Ian D. Brunton"
|
||||
EMAIL="iandbrunton@gmail.com"
|
19
system/ohsnap/slack-desc
Normal file
19
system/ohsnap/slack-desc
Normal file
|
@ -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------------------------------------------------------|
|
||||
ohsnap: ohsnap (monospaced font)
|
||||
ohsnap:
|
||||
ohsnap: Monospaced font based on Artwiz Snap with bold and versions with
|
||||
ohsnap: status icons.
|
||||
ohsnap:
|
||||
ohsnap:
|
||||
ohsnap:
|
||||
ohsnap:
|
||||
ohsnap:
|
||||
ohsnap: homepage: http://sourceforge.net/projects/osnapfont/
|
||||
ohsnap:
|
Loading…
Reference in a new issue