mirror of
https://github.com/yann64/haikuports.git
synced 2026-04-30 03:58:51 +02:00
* Remove checksums as these archives are generated on the fly, and add a comment stating the same.
39 lines
991 B
Plaintext
39 lines
991 B
Plaintext
SUMMARY="Croscore fonts"
|
|
DESCRIPTION="Open licensed fonts metrically compatible with MS corefonts.\
|
|
Included fonts are Arimo, Cousine and Timo. \
|
|
They are also called Chrome OS core fonts."
|
|
HOMEPAGE="http://en.wikipedia.org/wiki/Croscore_fonts"
|
|
# We don't list the checksums below intentionally as these archives are generated
|
|
# on the fly.
|
|
SRC_URI_1="http://www.google.com/fonts/download?kit=32ci3aiii8TFh9L2O_kK1w"
|
|
SRC_URI_2="http://www.google.com/fonts/download?kit=M2CeFoF86bDfqp_rSFi-T6CWcynf_cDxXwCLxiixG1c"
|
|
SRC_URI_3="http://www.google.com/fonts/download?kit=2Cuw8DPRXKIbXwFmqbUecA"
|
|
|
|
SOURCE_DIR=""
|
|
|
|
LICENSE="Apache v2"
|
|
COPYRIGHT="2010-2013 Google Corporation"
|
|
REVISION="2"
|
|
|
|
ARCHITECTURES="any"
|
|
DISABLE_SOURCE_PACKAGE="yes"
|
|
|
|
PROVIDES="croscorefonts = $portVersion"
|
|
BUILD_REQUIRES=""
|
|
BUILD_PREREQUIRES="coreutils"
|
|
|
|
BUILD()
|
|
{
|
|
true
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
FONTDIR=$fontsDir/ttfonts
|
|
mkdir -p ${FONTDIR}
|
|
|
|
cp *.ttf ${FONTDIR}
|
|
cp ../sources-2/*.ttf ${FONTDIR}
|
|
cp ../sources-3/*.ttf ${FONTDIR}
|
|
}
|