mirror of
https://github.com/yann64/haikuports.git
synced 2026-05-04 22:18:55 +02:00
Also, do not install README as it only contains licensing information or is the same text as the DESCRIPTION.
51 lines
1.3 KiB
Plaintext
51 lines
1.3 KiB
Plaintext
SUMMARY="The Android Roboto font"
|
|
DESCRIPTION="
|
|
The Android design language relies on traditional typographic tools such as \
|
|
scale, space, rhythm, and alignment with an underlying grid. Successful \
|
|
deployment of these tools is essential to help users quickly understand a \
|
|
screen of information. To support such use of typography, Ice Cream Sandwich \
|
|
introduced a new type family named Roboto, created specifically for the \
|
|
requirements of UI and high-resolution screens.
|
|
The current TextView framework offers Roboto in thin, light, regular and bold \
|
|
weights, along with an italic style for each weight. The framework also offers \
|
|
the Roboto Condensed variant in regular and bold weights, along with an italic \
|
|
style for each weight.
|
|
"
|
|
HOMEPAGE="http://www.google.com/fonts/specimen/Roboto"
|
|
SRC_URI="http://developer.android.com/downloads/design/roboto-1.2.zip"
|
|
CHECKSUM_SHA256="5101b5bdb3b7b14cc922a771ba068bfcae8634467c1f446bc89bc2b4f8b4f1b5"
|
|
LICENSE="Apache v2"
|
|
COPYRIGHT="2013 Christian Robertson"
|
|
REVISION="2"
|
|
ARCHITECTURES="any"
|
|
DISABLE_SOURCE_PACKAGE=yes
|
|
PROVIDES="
|
|
Roboto=$portVersion
|
|
"
|
|
REQUIRES=" "
|
|
BUILD_REQUIRES=" "
|
|
BUILD_PREREQUIRES="
|
|
coreutils
|
|
"
|
|
SOURCE_DIR=""
|
|
|
|
BUILD()
|
|
{
|
|
true
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
FONTDIR=$fontsDir/ttfonts
|
|
mkdir -p ${FONTDIR}
|
|
|
|
cd Roboto_v$portVersion
|
|
|
|
cd Roboto
|
|
cp *.ttf ${FONTDIR}
|
|
|
|
cd ..
|
|
cd RobotoCondensed
|
|
cp *.ttf ${FONTDIR}
|
|
}
|