mirror of
https://github.com/yann64/haikuports.git
synced 2026-04-30 12:08:53 +02:00
* The liberation_fonts recipe builds the font from source, and relies on fontforge to do so, which is currently (at the time of this commit) marked as broken. * It also needs to be updated to the new recipe format. * Since RedHat also provides an archive with precompiled fonts, add a new package 'liberation_fonts_ttf' which uses that.
38 lines
841 B
Plaintext
38 lines
841 B
Plaintext
SUMMARY="The Liberation Fonts"
|
|
DESCRIPTION="\
|
|
The Liberation(tm) Fonts is a font family which aims at metric compatibility \
|
|
with Arial, Times New Roman, and Courier New. It is sponsored by Red Hat.
|
|
"
|
|
HOMEPAGE="https://fedorahosted.org/liberation-fonts"
|
|
SRC_URI="https://fedorahosted.org/releases/l/i/liberation-fonts/liberation-fonts-ttf-2.00.1.tar.gz"
|
|
CHECKSUM_SHA256="7890278a6cd17873c57d9cd785c2d230d9abdea837e96516019c5885dd271504"
|
|
REVISION="3"
|
|
LICENSE="GNU GPL v2
|
|
Liberation Exceptions"
|
|
COPYRIGHT="2007-2010 Red Hat, Inc."
|
|
|
|
ARCHITECTURES="any"
|
|
DISABLE_SOURCE_PACKAGE=yes
|
|
|
|
PROVIDES="liberation_fonts_ttf = $portVersion"
|
|
REQUIRES=""
|
|
BUILD_REQUIRES=""
|
|
BUILD_PREREQUIRES="
|
|
coreutils
|
|
"
|
|
|
|
|
|
SOURCE_DIR="liberation-fonts-ttf-2.00.1"
|
|
|
|
BUILD()
|
|
{
|
|
true
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
FONTDIR=${fontsDir}/ttfonts
|
|
mkdir -p ${FONTDIR}
|
|
cp -a *.ttf ${FONTDIR}
|
|
}
|