mirror of
https://github.com/yann64/haikuports.git
synced 2026-05-06 06:58:57 +02:00
40 lines
830 B
Bash
40 lines
830 B
Bash
SUMMARY="An open source web font family"
|
|
DESCRIPTION="Inspired by the Highway Gothic font, designed by Delve Fonts"
|
|
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/$portVersion/overpass-webfonts.zip"
|
|
CHECKSUM_SHA256="8dad24f7b12d359dad64b1ce0c4c57e833ac2523d7411db12904acb3f6f98658"
|
|
SOURCE_DIR="overpass-mono-webfont"
|
|
SOURCE_URI_2="$SOURCE_URI"
|
|
CHECKSUM_SHA256_2="$CHECKSUM_SHA256"
|
|
SOURCE_DIR_2="overpass-webfont"
|
|
|
|
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}/
|
|
cd $sourceDir2
|
|
cp -r *.ttf ${FONTDIR}/
|
|
}
|