mirror of
https://github.com/yann64/haikuports.git
synced 2026-05-05 06:28:55 +02:00
* avrdude SUMMARY must have at least 3 words * bebook SUMMARY must have at least 3 words Re-ordered blocks * bzflag SUMMARY must have at least 3 words Re-ordered blocks * c_ares SUMMARY must start with capital letter Re-ordered blocks * cmake SUMMARY must have at least 3 words Re-ordered blocks * command_not_found SUMMARY must have at least 3 words Added BUILD_PREREQUIRES Re-ordered blocks * confuse SUMMARY must start with capital letter Re-ordered blocks * cream SUMMARY must start with capital letter Re-ordered blocks * croscorefonts SUMMARY must have at least 3 words Re-ordered blocks * cssselect SUMMARY must start with capital letter Re-ordered blocks * dcron SUMMARY must start with capital letter Re-ordered blocks * eggchess SUMMARY must have at least 3 words Re-ordered blocks
39 lines
1.0 KiB
Bash
39 lines
1.0 KiB
Bash
SUMMARY="A font metrically compatible with MS corefonts"
|
|
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"
|
|
COPYRIGHT="2010-2013 Google Corporation"
|
|
LICENSE="Apache v2"
|
|
REVISION="2"
|
|
# We don't list the checksums below intentionally as these archives are generated
|
|
# on the fly.
|
|
SOURCE_URI_1="http://www.google.com/fonts/download?kit=32ci3aiii8TFh9L2O_kK1w"
|
|
SOURCE_URI_2="http://www.google.com/fonts/download?kit=M2CeFoF86bDfqp_rSFi-T6CWcynf_cDxXwCLxiixG1c"
|
|
SOURCE_URI_3="http://www.google.com/fonts/download?kit=2Cuw8DPRXKIbXwFmqbUecA"
|
|
SOURCE_DIR=""
|
|
|
|
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}
|
|
}
|