mirror of
https://github.com/yann64/haikuports.git
synced 2026-05-05 22:48:55 +02:00
43 lines
1.3 KiB
Bash
43 lines
1.3 KiB
Bash
SUMMARY="IBM’s new typeface, IBM Plex"
|
||
DESCRIPTION="IBM Plex is a font family designed to convey the IBM identity on \
|
||
everything from product packaging to the ibm.com website to development code. \
|
||
It is an open source typeface superfamily developed by Mike Abbink for IBM to \
|
||
use in branding. It was commissioned to substitute Helvetica Neue and has 3 \
|
||
typefaces:
|
||
* IBM Plex Serif – A serif typeface.
|
||
* IBM Plex Sans – A sans-serif typeface.
|
||
* IBM Plex Sans Condensed – A sans-serif condensed typeface.
|
||
* IBM Plex Sans Hebrew – A sans-serif Hebrew typeface.
|
||
* IBM Plex Mono – A monospaced typeface."
|
||
HOMEPAGE="https://github.com/IBM/plex"
|
||
COPYRIGHT="2017 IBM Corp. with Reserved Font Name 'Plex'"
|
||
LICENSE="SIL Open Font License v1.1"
|
||
REVISION="1"
|
||
SOURCE_URI="https://github.com/IBM/plex/archive/v$portVersion.tar.gz"
|
||
CHECKSUM_SHA256="46b5238046ee82b2e0d844566ddcbc7cc6003aa4a5f56ba66a348bda1151ff81"
|
||
SOURCE_FILENAME="plex-$portVersion.tar.gz"
|
||
SOURCE_DIR="plex-$portVersion"
|
||
|
||
ARCHITECTURES="any"
|
||
DISABLE_SOURCE_PACKAGE="yes"
|
||
|
||
PROVIDES="ibm_plex = $portVersion"
|
||
|
||
BUILD_PREREQUIRES="
|
||
coreutils
|
||
"
|
||
|
||
BUILD()
|
||
{
|
||
true
|
||
}
|
||
|
||
INSTALL()
|
||
{
|
||
FONTDIR=$fontsDir/ttfonts
|
||
install -m 755 -d "$FONTDIR"
|
||
for i in IBM-Plex-*; do
|
||
install -m 644 -t "$FONTDIR" $i/fonts/complete/ttf/*.ttf
|
||
done
|
||
}
|