1SUMMARY="A script font"
2DESCRIPTION="Caligula is a crude representation of what was originally a \
3calligraphic bitmap script font autotraced by Fontographer 3.2. There are no \
4kerning pairs in this font and it should probably be used only in sizes 24pt \
5or larger."
6HOMEPAGE="https://github.com/FontCollection/Caligula"
7COPYRIGHT="1994 or earler"
8LICENSE="Public Domain"
9REVISION="1"
10SOURCE_URI="https://github.com/FontCollection/Caligula/releases/download/initial/Caligula.tar.xz"
11CHECKSUM_SHA256="dde42b6f09b85e92c2723d695fce907f0a07a74dff35f6b6094571fa43ac125c"
12SOURCE_FILENAME="Caligula.tar.xz"
13SOURCE_DIR="Caligula"
14
15ARCHITECTURES="any"
16
17PROVIDES="
18	caligula = $portVersion
19	"
20
21BUILD_PREREQUIRES="
22	cmd:md2html
23	"
24
25BUILD()
26{
27	md2html --github -f --fpermissive-autolinks --fstrikethrough --ftables --ftasklists --funderline --fwiki-links README.md --output=index.html
28}
29
30INSTALL()
31{
32	FONTDIR=$fontsDir/ttfonts
33	mkdir -p ${FONTDIR}
34	cp caligula.ttf ${FONTDIR}/
35
36	mkdir -p $docDir
37	cp index.html $docDir/
38	cp caligula.gif $docDir/
39}
40