26 lines
754 B
TOML
26 lines
754 B
TOML
[package]
|
|
name = "liberation-fonts"
|
|
version = "2.1.5"
|
|
description = "Liberation font family — metrically compatible with Arial, Times New Roman, Courier New"
|
|
url = "https://github.com/liberationfonts/liberation-fonts"
|
|
license = "OFL-1.1"
|
|
|
|
[source]
|
|
url = "https://github.com/liberationfonts/liberation-fonts/files/7261482/liberation-fonts-ttf-${version}.tar.gz"
|
|
sha256 = "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"
|
|
|
|
[dependencies]
|
|
# Font package — no runtime library deps, just fontconfig to register them
|
|
run = ["fontconfig"]
|
|
build = []
|
|
|
|
[build]
|
|
system = "custom"
|
|
configure = ""
|
|
make = ""
|
|
install = """
|
|
mkdir -p ${PKG}/usr/share/fonts/liberation
|
|
cp *.ttf ${PKG}/usr/share/fonts/liberation/
|
|
mkdir -p ${PKG}/etc/fonts/conf.d
|
|
"""
|