mirror of
https://github.com/yann64/haikuports.git
synced 2026-05-06 15:08:57 +02:00
* FontAwesome: version bump * Delete fontawesome-4.7.0.recipe * Delete fontawesome-5.6.3.recipe
33 lines
952 B
Bash
33 lines
952 B
Bash
SUMMARY="Iconic scalable vector icon set"
|
|
DESCRIPTION="FontAwesome provides a library of over 2,016 free icons used \
|
|
on over 200 million websites. Haiku's discussion forum at \
|
|
https://discuss.haiku-os.org uses it as well.
|
|
As long as Haiku doesn't support loading a font that's not installed, you \
|
|
should install this webfont to see all the icons on the discussion forum."
|
|
HOMEPAGE="https://fontawesome.com/"
|
|
COPYRIGHT="2022 Fonticons"
|
|
LICENSE="SIL Open Font License v1.1"
|
|
REVISION="1"
|
|
SOURCE_URI="https://use.fontawesome.com/releases/v$portVersion/fontawesome-free-$portVersion-web.zip"
|
|
CHECKSUM_SHA256="923687e03f83b68e074d2f4c8871524cad5e1fe0952ba2d89e85b23403c1183a"
|
|
SOURCE_DIR="fontawesome-free-$portVersion-web"
|
|
|
|
ARCHITECTURES="any"
|
|
DISABLE_SOURCE_PACKAGE="yes"
|
|
|
|
PROVIDES="
|
|
fontawesome = $portVersion
|
|
"
|
|
|
|
BUILD_PREREQUIRES="
|
|
cmd:cp
|
|
cmd:mkdir
|
|
"
|
|
|
|
INSTALL()
|
|
{
|
|
FONTDIR=$fontsDir/ttfonts
|
|
mkdir -p ${FONTDIR}
|
|
cp -a webfonts/*.ttf ${FONTDIR}
|
|
}
|