mirror of
https://github.com/yann64/haikuports.git
synced 2026-05-03 13:38:52 +02:00
38 lines
1.0 KiB
Bash
38 lines
1.0 KiB
Bash
SUMMARY="Font family from Google's Android project"
|
|
DESCRIPTION="\
|
|
The Droid family of fonts was designed by Ascender's Steve Matteson beginning \
|
|
in the fall of 2006. The goal was to provide optimal quality and reading \
|
|
comfort on a mobile handset. The Droid fonts were optimized for use in \
|
|
application menus, web browsers and for other screen text.
|
|
"
|
|
HOMEPAGE="http://www.droidfonts.com"
|
|
# source zip extracted from git clone https://android.googlesource.com/platform/frameworks/base tag android-4.3_r2.2 /data/fonts
|
|
SOURCE_URI="http://ports-space.haiku-files.org/media-fonts/source/droid-4.3_r2.2.zip"
|
|
CHECKSUM_SHA256="221133c329efdb2b911c18ef222eeb3fcb011e5be7c37623e68faa90c15b8cd0"
|
|
LICENSE="Apache v2"
|
|
COPYRIGHT="2005-2008 The Android Open Source Project"
|
|
REVISION="2"
|
|
|
|
ARCHITECTURES="any"
|
|
DISABLE_SOURCE_PACKAGE=yes
|
|
|
|
PROVIDES="droid = $portVersion"
|
|
REQUIRES=""
|
|
BUILD_REQUIRES=""
|
|
BUILD_PREREQUIRES="coreutils"
|
|
|
|
SOURCE_DIR="fonts"
|
|
|
|
|
|
BUILD()
|
|
{
|
|
true
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
FONTDIR=$fontsDir/ttfonts
|
|
mkdir -p ${FONTDIR}
|
|
cp *.ttf ${FONTDIR}
|
|
}
|