mirror of
https://github.com/yann64/haikuports.git
synced 2026-04-08 21:00:05 +02:00
36 lines
990 B
Bash
36 lines
990 B
Bash
SUMMARY="The Anonymous Pro Font Family"
|
|
DESCRIPTION="\
|
|
Anonymous Pro is a family of fixed-width fonts. It was designed especially for \
|
|
coding - characers that could be mistaken for one another (e. g. O and 0) have \
|
|
distinct shapes. It supports most of the Latin-based Western and Central \
|
|
European languages, as well as Greek and Cyrillic.
|
|
"
|
|
HOMEPAGE="https://www.marksimonson.com/fonts/view/anonymous-pro"
|
|
COPYRIGHT="2009 Mark Simonson, with reserved font name Anonymous Pro"
|
|
LICENSE="SIL Open Font License v1.1"
|
|
REVISION="3"
|
|
SOURCE_URI="https://www.marksimonson.com/assets/content/fonts/AnonymousPro-1.002.zip"
|
|
CHECKSUM_SHA256="86665847a51cdfb58a1e1dfd8b1ba33f183485affe50b53e3304f63d3d3552ab"
|
|
SOURCE_DIR="AnonymousPro-1.002.001"
|
|
|
|
ARCHITECTURES="any"
|
|
DISABLE_SOURCE_PACKAGE="yes"
|
|
|
|
PROVIDES="anonymous_pro = $portVersion"
|
|
REQUIRES=""
|
|
|
|
BUILD_REQUIRES=""
|
|
BUILD_PREREQUIRES="coreutils"
|
|
|
|
BUILD()
|
|
{
|
|
true
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
FONTDIR=$fontsDir/ttfonts
|
|
mkdir -p ${FONTDIR}
|
|
cp *.ttf ${FONTDIR}
|
|
}
|