mirror of
https://github.com/yann64/haikuports.git
synced 2026-05-03 05:28:53 +02:00
36 lines
732 B
Bash
36 lines
732 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/archive/$portVersion.tar.gz"
|
|
CHECKSUM_SHA256="5575965097b1682330a9a4d36e4090bfe53f6cf97f72351adbf44e05e008a8aa"
|
|
SOURCE_FILENAME="Overpass-$portVersion.tar.gz"
|
|
SOURCE_DIR="Overpass-$portVersion"
|
|
|
|
ARCHITECTURES="any"
|
|
DISABLE_SOURCE_PACKAGE="yes"
|
|
|
|
PROVIDES="
|
|
overpass = $portVersion
|
|
"
|
|
|
|
BUILD_PREREQUIRES="
|
|
cmd:cp
|
|
cmd:mkdir
|
|
"
|
|
|
|
BUILD()
|
|
{
|
|
true
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
FONTDIR=$fontsDir/otfonts
|
|
mkdir -p ${FONTDIR}
|
|
|
|
cp -r desktop-fonts/**/*.otf ${FONTDIR}/
|
|
}
|