mirror of
https://github.com/yann64/haikuports.git
synced 2026-05-05 06:28:55 +02:00
44 lines
1.0 KiB
Plaintext
44 lines
1.0 KiB
Plaintext
SUMMARY="Font family from Ubuntu operating system"
|
|
DESCRIPTION="Font family from Ubuntu operating system"
|
|
HOMEPAGE="http://font.ubuntu.com"
|
|
SRC_URI="http://font.ubuntu.com/download/ubuntu-font-family-0.80.zip"
|
|
CHECKSUM_MD5="a124c5c6606f4f3b733d3477380e9d2f"
|
|
LICENSE="Ubunu Fonts License 1.0"
|
|
COPYRIGHT="2011 Canonical Ltd."
|
|
REVISION="3"
|
|
|
|
ARCHITECTURES="any"
|
|
DISABLE_SOURCE_PACKAGE=yes
|
|
|
|
PROVIDES="ubuntu-font-family = $portVersion"
|
|
REQUIRES=""
|
|
BUILD_REQUIRES=""
|
|
BUILD_PREREQUIRES="coreutils"
|
|
|
|
SOURCE_DIR="ubuntu-font-family-0.80"
|
|
|
|
BUILD()
|
|
{
|
|
true
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
FONTDIR=$fontsDir/ubuntu-font-family
|
|
mkdir -p ${FONTDIR}
|
|
cp Ubuntu-B.ttf ${FONTDIR}
|
|
cp Ubuntu-BI.ttf ${FONTDIR}
|
|
cp Ubuntu-C.ttf ${FONTDIR}
|
|
cp Ubuntu-L.ttf ${FONTDIR}
|
|
cp Ubuntu-LI.ttf ${FONTDIR}
|
|
cp Ubuntu-M.ttf ${FONTDIR}
|
|
cp Ubuntu-MI.ttf ${FONTDIR}
|
|
cp Ubuntu-R.ttf ${FONTDIR}
|
|
cp Ubuntu-RI.ttf ${FONTDIR}
|
|
cp UbuntuMono-B.ttf ${FONTDIR}
|
|
cp UbuntuMono-BI.ttf ${FONTDIR}
|
|
cp UbuntuMono-R.ttf ${FONTDIR}
|
|
cp UbuntuMono-RI.ttf ${FONTDIR}
|
|
cp README.txt ${FONTDIR}/ubuntu-fonts-readme.txt
|
|
}
|