Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: haikuports/haikuports
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: fc9dd1f29eee
Choose a base ref
...
head repository: haikuports/haikuports
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 68ba3c9c3c63
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Jul 16, 2021

  1. Verified

    This commit was signed with the committer’s verified signature.
    prusnak Pavol Rusnak
    Copy the full SHA
    68ba3c9 View commit details
Showing with 13 additions and 11 deletions.
  1. +13 −11 media-fonts/ibm_plex/{ibm_plex-4.0.2.recipe → ibm_plex-5.1.3.recipe}
Original file line number Diff line number Diff line change
@@ -4,22 +4,24 @@ 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 8 \
typefaces:
* IBM Plex Serif – A serif typeface.
* IBM PLex Mono - A monospaced typeface.
* IBM Plex Sans – A sans-serif typeface.
* IBM Plex Sans Arabic - A sans-serif Arabic typeface.
* IBM Plex Sans Condensed – A sans-serif condensed typeface.
* IBM Plex Sans Arabic – A sans-serif Arabic typeface.
* IBM Plex Sans Devanagari - A sans-serif Devanagari typeface.
* IBM Plex Sans Hebrew – A sans-serif Hebrew typeface.
* IBK Plex Sans KR - A sans-serif Korean typeface.
* IBM Plex Sans Thai – A sans-serif Thai typeface.
* IBM Plex Sans Devanagari – A sans-serif Devanagari typeface.
* IBM Plex Mono – A monospaced typeface."
* IBM Plex Sans Thai-Looped - A looped sans-serif Thai typeface.
* IBM Plex Serif - A serif typeface."
HOMEPAGE="https://github.com/IBM/plex"
COPYRIGHT="2020 IBM Corp. with Reserved Font Name 'Plex'"
COPYRIGHT="2021 IBM Corp. with Reserved Font Name 'Plex'"
LICENSE="SIL Open Font License v1.1"
REVISION="1"
SOURCE_URI="https://github.com/IBM/plex/releases/download/v$portVersion/OpenType.zip"
CHECKSUM_SHA256="6615c5b5ecf5736a5ed29b7f99b780d3ae503e81962fe2259b30fdc322416d9d"
SOURCE_URI="https://github.com/IBM/plex/releases/download/v$portVersion/TrueType.zip"
CHECKSUM_SHA256="2c9f07cc1c0fd0288b1c68b8472362b5a1534f486978288c3c2cf794f168f01c"
SOURCE_FILENAME="plex-$portVersion.zip"
SOURCE_DIR="OpenType"
SOURCE_DIR="TrueType"

ARCHITECTURES="any"
DISABLE_SOURCE_PACKAGE="yes"
@@ -37,9 +39,9 @@ BUILD()

INSTALL()
{
FONTDIR=$fontsDir/otfonts
FONTDIR=$fontsDir/ttfonts
install -m 755 -d "$FONTDIR"
for i in IBM-Plex-*; do
install -m 644 -t "$FONTDIR" $i/*.otf
for i in "IBM-Plex-*" "IBM-Plex-Sans-KR/hinted"; do
install -m 644 -t "$FONTDIR" $i/*.ttf
done
}