mirror of
https://github.com/yann64/haikuports.git
synced 2026-05-05 06:28:55 +02:00
34 lines
683 B
Bash
34 lines
683 B
Bash
SUMMARY="An open source web font family"
|
|
DESCRIPTION="Inspired by the Highway Gothic font."
|
|
HOMEPAGE="http://overpassfont.org/"
|
|
COPYRIGHT="Red Hat, Inc."
|
|
LICENSE="SIL Open Font License v1.1"
|
|
REVISION="1"
|
|
SOURCE_URI="https://github.com/RedHatBrand/overpass/releases/download/2.1/overpass-fonts-ttf-$portVersion.zip"
|
|
CHECKSUM_SHA256="8eb3d835eb01bdafe4993f1b4fb68fdbd526559ffd933b2442a95ce7f0daa7cd"
|
|
SOURCE_DIR="overpass-fonts-ttf-$portVersion"
|
|
|
|
ARCHITECTURES="any"
|
|
DISABLE_SOURCE_PACKAGE="yes"
|
|
|
|
PROVIDES="
|
|
overpass = $portVersion
|
|
"
|
|
|
|
BUILD_PREREQUIRES="
|
|
cmd:cp
|
|
cmd:mkdir
|
|
"
|
|
|
|
BUILD()
|
|
{
|
|
true
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
FONTDIR=$fontsDir/ttfonts
|
|
mkdir -p ${FONTDIR}
|
|
cp -r *.ttf ${FONTDIR}/
|
|
}
|