|
root / base / dejavu-fonts
dejavu-fonts Plain Text 33 lines 978 B
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#!/bin/sh
# Build script for dejavu-fonts (data-only, no compile). Pre-built TTF
# distribution - just install the .ttf files; fc-cache picks them up.
set -e
cd "$SRCDIR"

mkdir -p "$PKGDIR$PREFIX/share/fonts/dejavu"
find . -name '*.ttf' -exec cp {} "$PKGDIR$PREFIX/share/fonts/dejavu/" \;
# dejavu-fonts - DejaVu TrueType font family (pre-built .ttf distribution,
# no compile step). https://dejavu-fonts.github.io/

[package]
name = "dejavu-fonts"
version = "2.37"
release = 1
description = "DejaVu TrueType font family"
url = "https://dejavu-fonts.github.io/"
license = "Bitstream-Vera AND Public-Domain"
maintainer = "Chris Tusa <chris.tusa@leafscale.com>"
arch = "x86_64"

[dependencies]
runtime = ["fontconfig"]
build = []

[[source]]
file = "dejavu-fonts-ttf-2.37.zip"
urls = ["https://downloads.sourceforge.net/project/dejavu/dejavu/2.37/dejavu-fonts-ttf-2.37.zip"]
checksum = "7576310b219e04159d35ff61dd4a4ec4cdba4f35c00e002a136f00e96a908b0a"

[build]
parallel = false