mirror of
https://github.com/yann64/haikuports.git
synced 2026-05-05 06:28:55 +02:00
46 lines
1.3 KiB
Bash
46 lines
1.3 KiB
Bash
SUMMARY="It's Courier, just better"
|
|
DESCRIPTION="Courier Prime was designed to replace the legendary Courier \
|
|
especially in screenwriting. It's Courier, just better. Courier Prime is \
|
|
optimized for 12 point size, and matches the metrics of Courier and Courier \
|
|
Final Draft, so you can (mostly) swap it out one-for-one and your page count \
|
|
should not change."
|
|
HOMEPAGE="http://quoteunquoteapps.com/courierprime/"
|
|
COPYRIGHT="2013 Quote-Unquote Apps"
|
|
LICENSE="SIL Open Font License v1.1"
|
|
REVISION="3"
|
|
SOURCE_URI="http://quoteunquoteapps.com/downloads/courier-prime.zip"
|
|
SOURCE_URI_2="http://quoteunquoteapps.com/downloads/courier-sans.zip"
|
|
SOURCE_URI_3="http://quoteunquoteapps.com/downloads/courier-code.zip"
|
|
CHECKSUM_SHA256="d5d4faf1bee0d1f52bab1103cbfdfb354976331c86f999c110c22a098cb12d73"
|
|
CHECKSUM_SHA256_2="754b3937340f5522ccf96be7832efbd809ef93f373d51b12919adbd9c0a468d7"
|
|
CHECKSUM_SHA256_3="4485257345c3a7ccc172f89b229db0f8c7dd787cdf4943c825a45f9bf834fd91"
|
|
SOURCE_DIR="Courier Prime"
|
|
SOURCE_DIR_2="CourierPrimeSans-master/ttf"
|
|
SOURCE_DIR_3=""
|
|
|
|
ARCHITECTURES="any"
|
|
DISABLE_SOURCE_PACKAGE="yes"
|
|
|
|
PROVIDES="
|
|
courier_prime = $portVersion
|
|
"
|
|
|
|
BUILD_PREREQUIRES="
|
|
cmd:cp
|
|
cmd:mkdir
|
|
"
|
|
|
|
BUILD()
|
|
{
|
|
true
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
FONTDIR=$fontsDir/ttfonts
|
|
mkdir -p ${FONTDIR}
|
|
cp -r *.ttf ${FONTDIR}/
|
|
cp -r $sourceDir2/*.ttf ${FONTDIR}/
|
|
cp -r $sourceDir3/*.ttf ${FONTDIR}/
|
|
}
|