mirror of
https://github.com/yann64/haikuports.git
synced 2026-05-04 22:18:55 +02:00
41 lines
1.2 KiB
Bash
41 lines
1.2 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 Mono – A monospaced typeface."
|
||
HOMEPAGE="https://ibm.github.io/type"
|
||
COPYRIGHT="2017 IBM Corp. with Reserved Font Name 'Plex'"
|
||
LICENSE="SIL Open Font License v1.1"
|
||
REVISION="1"
|
||
SOURCE_URI="https://github.com/IBM/type/archive/v$portVersion.tar.gz"
|
||
CHECKSUM_SHA256="0e212de6d0f33604b6c22e9743aab05bc12d482b1bdc7402972f3f6a9aa92a77"
|
||
SOURCE_FILENAME="type-$portVersion.tar.gz"
|
||
SOURCE_DIR="type-$portVersion"
|
||
|
||
ARCHITECTURES="any"
|
||
DISABLE_SOURCE_PACKAGE=yes
|
||
|
||
PROVIDES="ibm_plex = $portVersion"
|
||
|
||
BUILD_PREREQUIRES="
|
||
coreutils
|
||
"
|
||
|
||
BUILD()
|
||
{
|
||
true
|
||
}
|
||
|
||
INSTALL()
|
||
{
|
||
FONTDIR=$fontsDir/ttfonts
|
||
mkdir -p ${FONTDIR}
|
||
cp fonts/Mono/desktop/pc/*.ttf ${FONTDIR}
|
||
cp fonts/Sans/desktop/pc/*.ttf ${FONTDIR}
|
||
cp fonts/Serif/desktop/pc/*.ttf ${FONTDIR}
|
||
}
|