26 lines
911 B
Bash
26 lines
911 B
Bash
# Template file for 'google-fonts-ttf'
|
|
pkgname=google-fonts-ttf
|
|
version=20160220
|
|
revision=1
|
|
noarch=yes
|
|
_githash=8b98760b95cfa329c5d4570b9682733082f776cb
|
|
wrksrc="fonts-${_githash}"
|
|
depends="font-util cantarell-fonts"
|
|
font_dirs="/usr/share/fonts/TTF"
|
|
short_desc="TrueType fonts from the Google Fonts project"
|
|
maintainer="Alessio Sergi <al3hex@gmail.com>"
|
|
homepage="https://www.google.com/fonts"
|
|
license="Apache-2.0, OFL-1.1, UFL-1.0"
|
|
distfiles="https://github.com/google/fonts/archive/${_githash}.tar.gz"
|
|
checksum=9c5b65ff6559f3ce19a4685ec5c1216d38daeffe0fc5f9f7b1f903413a121a7c
|
|
conflicts="fonts-croscore-ttf>=0 font-fira-ttf>=0 font-sourcecodepro>=0 ttf-ubuntu-font-family>=0"
|
|
|
|
do_install() {
|
|
vmkdir usr/share/fonts/TTF
|
|
find . -type f -name '*.ttf' -exec install -Dm644 '{}' ${DESTDIR}/usr/share/fonts/TTF \;
|
|
}
|
|
post_install() {
|
|
# remove cantarell fonts
|
|
rm -f ${DESTDIR}/usr/share/fonts/TTF/Cantarell-*.ttf
|
|
}
|