Files
haikuports/media-fonts/dotsies/dotsies-1.0~20181222.recipe
2019-01-04 14:15:36 -05:00

47 lines
2.0 KiB
Bash

SUMMARY="A font that uses dots instead of letters"
DESCRIPTION="Since latin letters (a, b, c, etc.) are optimized to be written \
by hand, they take up a lot of unnecessary space. Your eyes have to move at \
a frantic pace from left to right to read. The letters in Dotsies words \
smoosh together, so words look like shapes! Get more screen space! Save \
paper. Have a more comfortable reading experience."
HOMEPAGE="http://dotsies.org/"
COPYRIGHT="2012 Craig Muth"
LICENSE="CC-BY-4.0"
REVISION="1"
SOURCE_URI="http://dotsies.org/Dotsies.ttf#noarchive"
CHECKSUM_SHA256="d6023241583d417429e1a25febf98a25ec7bb835fd46f5333a6112518257e031"
SOURCE_URI_2="http://dotsies.org/Dotsies%20Training%20Wheels.ttf#noarchive"
CHECKSUM_SHA256_2="d5725f5815f9daa8776ad328b420237497fe9631d559e7d906451d56b8c22f82"
SOURCE_URI_3="http://dotsies.org/Dotsies%20Wide.ttf#noarchive"
CHECKSUM_SHA256_3="6974b1e68825fcbb7579ed4f4a3fb7e4c696947118bc4ae9c834d65dcb02f676"
SOURCE_URI_4="http://dotsies.org/Dotsies%20Context.ttf#noarchive"
CHECKSUM_SHA256_4="b789521f17977a3d27fd711874df2e7141f59c762a5cfbd3ed673b762319e887"
SOURCE_URI_5="http://dotsies.org/Dotsies%20Striped.ttf#noarchive"
CHECKSUM_SHA256_5="916a1432470ab14e7e14990fb3f55be0b498ea5a872953f2f68ec41b0959c3f9"
SOURCE_URI_6="http://dotsies.org/Dotsies%20Roman.ttf#noarchive"
CHECKSUM_SHA256_6="b128d103a5db33ebb54239862a691d28b46b29e9f8c046a2380adbcb4f0dc186"
ARCHITECTURES="any"
DISABLE_SOURCE_PACKAGE="yes"
PROVIDES="
dotsies = $portVersion
"
BUILD_PREREQUIRES="
cmd:cp
cmd:mkdir
"
INSTALL()
{
FONTDIR=$fontsDir/ttfonts
mkdir -p ${FONTDIR}
cp -a $sourceDir/Dotsies.ttf ${FONTDIR}
cp -a $sourceDir2/Dotsies%20Training%20Wheels.ttf ${FONTDIR}/Dotsies-Training-Wheels.ttf
cp -a $sourceDir3/Dotsies%20Wide.ttf ${FONTDIR}/Dotsies-Wide.ttf
cp -a $sourceDir4/Dotsies%20Context.ttf ${FONTDIR}/Dotsies-Context.ttf
cp -a $sourceDir5/Dotsies%20Striped.ttf ${FONTDIR}/Dotsies-Striped.ttf
cp -a $sourceDir6/Dotsies%20Roman.ttf ${FONTDIR}/Dotsies-Roman.ttf
}