24 lines
626 B
Bash
24 lines
626 B
Bash
# Template file for 'font-fira-ttf'
|
|
pkgname=font-fira-ttf
|
|
version=4.202
|
|
revision=2
|
|
noarch=yes
|
|
wrksrc=Fira-${version}
|
|
depends="font-util xbps-triggers"
|
|
font_dirs="/usr/share/fonts/TTF"
|
|
short_desc="Mozilla's new typeface TTF, used in Firefox OS"
|
|
maintainer="Diogo Leal <diogo@diogoleal.com>"
|
|
license="OFL-1.1"
|
|
homepage="http://mozilla.github.io/Fira/"
|
|
distfiles="https://github.com/mozilla/Fira/archive/${version}.tar.gz"
|
|
checksum=d86269657387f144d77ba12011124f30f423f70672e1576dc16f918bb16ddfe4
|
|
|
|
do_install() {
|
|
vmkdir usr/share/fonts/TTF
|
|
|
|
for files in ttf/*.ttf; do
|
|
vinstall ${files} 0644 \
|
|
/usr/share/fonts/TTF/
|
|
done
|
|
}
|