2018-08-02 20:10:52 +02:00
|
|
|
|
# Template file for 'font-ibm-plex-ttf'
|
|
|
|
|
pkgname=font-ibm-plex-ttf
|
2018-08-03 09:08:02 +02:00
|
|
|
|
version=1.1.3
|
2018-08-02 20:10:52 +02:00
|
|
|
|
revision=1
|
|
|
|
|
wrksrc="plex-${version}"
|
|
|
|
|
noarch=yes
|
|
|
|
|
depends="font-util"
|
|
|
|
|
font_dirs="/usr/share/fonts/TTF"
|
|
|
|
|
short_desc="The package of IBM’s typeface, IBM Plex (TTF variant)"
|
|
|
|
|
maintainer="Vintodrimmer <vintodrimmer@protonmail.ch>"
|
|
|
|
|
license="OFL-1.1"
|
|
|
|
|
homepage="https://github.com/IBM/plex"
|
|
|
|
|
distfiles="https://github.com/IBM/plex/archive/v${version}.tar.gz"
|
2018-08-03 09:08:02 +02:00
|
|
|
|
checksum=c17ead46270e0bdb86e6e0923af0fa9c711007e5fed4a045e96deb7c0d535a2c
|
2018-08-02 20:10:52 +02:00
|
|
|
|
|
|
|
|
|
do_install() {
|
|
|
|
|
vmkdir usr/share/fonts/TTF
|
|
|
|
|
for files in IBM-Plex-*/fonts/complete/ttf/*.ttf; do
|
|
|
|
|
vinstall ${files} 0644 \
|
|
|
|
|
usr/share/fonts/TTF
|
|
|
|
|
done
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
font-ibm-plex-otf_package() {
|
|
|
|
|
depends="font-util"
|
|
|
|
|
font_dirs="/usr/share/fonts/OTF"
|
|
|
|
|
short_desc="${short_desc/TTF/OTF}"
|
|
|
|
|
pkg_install() {
|
|
|
|
|
vmkdir usr/share/fonts/OTF
|
|
|
|
|
for files in IBM-Plex-*/fonts/complete/otf/*.otf; do
|
|
|
|
|
vinstall ${files} 0644 \
|
|
|
|
|
usr/share/fonts/OTF
|
|
|
|
|
done
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|