diff options
author | Aaron Ball <nullspoon@oper.io> | 2024-08-03 17:27:48 -0600 |
---|---|---|
committer | Aaron Ball <nullspoon@oper.io> | 2024-08-03 17:27:48 -0600 |
commit | d8ec8a82aebad5241d3b75935886d751cd3753ff (patch) | |
tree | 98641b44935c16a34102d1fdb65719ac32975cce /ttf-liberation | |
parent | 37b13ad667ae2c91aca36e482e338174ef1f29cc (diff) | |
download | crux-ports-fonts-d8ec8a82aebad5241d3b75935886d751cd3753ff.tar.gz crux-ports-fonts-d8ec8a82aebad5241d3b75935886d751cd3753ff.tar.xz |
ttf-liberation:Initial commit of version 2.1.5
Diffstat (limited to 'ttf-liberation')
-rw-r--r-- | ttf-liberation/.footprint | 17 | ||||
-rw-r--r-- | ttf-liberation/.md5sum | 1 | ||||
-rw-r--r-- | ttf-liberation/.signature | 5 | ||||
-rw-r--r-- | ttf-liberation/Pkgfile | 18 |
4 files changed, 41 insertions, 0 deletions
diff --git a/ttf-liberation/.footprint b/ttf-liberation/.footprint new file mode 100644 index 0000000..70148bc --- /dev/null +++ b/ttf-liberation/.footprint @@ -0,0 +1,17 @@ +drwxr-xr-x root/root usr/ +drwxr-xr-x root/root usr/share/ +drwxr-xr-x root/root usr/share/fonts/ +drwxr-xr-x root/root usr/share/fonts/TTF/ +drwxr-xr-x root/root usr/share/fonts/TTF/liberation/ +-rw-r--r-- root/root usr/share/fonts/TTF/liberation/LiberationMono-Bold.ttf +-rw-r--r-- root/root usr/share/fonts/TTF/liberation/LiberationMono-BoldItalic.ttf +-rw-r--r-- root/root usr/share/fonts/TTF/liberation/LiberationMono-Italic.ttf +-rw-r--r-- root/root usr/share/fonts/TTF/liberation/LiberationMono-Regular.ttf +-rw-r--r-- root/root usr/share/fonts/TTF/liberation/LiberationSans-Bold.ttf +-rw-r--r-- root/root usr/share/fonts/TTF/liberation/LiberationSans-BoldItalic.ttf +-rw-r--r-- root/root usr/share/fonts/TTF/liberation/LiberationSans-Italic.ttf +-rw-r--r-- root/root usr/share/fonts/TTF/liberation/LiberationSans-Regular.ttf +-rw-r--r-- root/root usr/share/fonts/TTF/liberation/LiberationSerif-Bold.ttf +-rw-r--r-- root/root usr/share/fonts/TTF/liberation/LiberationSerif-BoldItalic.ttf +-rw-r--r-- root/root usr/share/fonts/TTF/liberation/LiberationSerif-Italic.ttf +-rw-r--r-- root/root usr/share/fonts/TTF/liberation/LiberationSerif-Regular.ttf diff --git a/ttf-liberation/.md5sum b/ttf-liberation/.md5sum new file mode 100644 index 0000000..7d52f42 --- /dev/null +++ b/ttf-liberation/.md5sum @@ -0,0 +1 @@ +77f8b9c9cdeea1f8b2a7c2fb29c5bae7 2.1.5.tar.gz diff --git a/ttf-liberation/.signature b/ttf-liberation/.signature new file mode 100644 index 0000000..e8c8acd --- /dev/null +++ b/ttf-liberation/.signature @@ -0,0 +1,5 @@ +untrusted comment: verify with /etc/ports/nullspoon-fonts.pub +RWTJtpWx15Z5k8N6hfGNI/XXB+tGbtGcPSuagLW5uhKCHbWe5r8R5HmrzxGYV1uI62WiLivii/bpszqAtxKGHSn/+Nt6AmW/9Aw= +SHA256 (Pkgfile) = 32c9b52759c4394b2c226d6607ed2f2dea16d952441e5302de172f332cf1fa94 +SHA256 (.footprint) = 87417eb7c4ac69e3c2a62ee76869762189f1d5f9ae3b04f48ac2c06e05eb1fdc +SHA256 (2.1.5.tar.gz) = 9a823ccb33c8a8a865e84b982bcdc44d03ba4914adb91e6000df035dc0e55936 diff --git a/ttf-liberation/Pkgfile b/ttf-liberation/Pkgfile new file mode 100644 index 0000000..a760cd1 --- /dev/null +++ b/ttf-liberation/Pkgfile @@ -0,0 +1,18 @@ +# Description: A font family which aims at metric compatibility with Arial, Times New Roman, and Courier New +# URL: https://github.com/liberationfonts/liberation-fonts +# Maintainer: Aaron Ball, nullspoon at oper dot io +# Depends on: python3-fonttools fontforge + +name=ttf-liberation +version=2.1.5 +release=1 +source=(https://github.com/liberationfonts/liberation-fonts/archive/refs/tags/${version}.tar.gz) + +build() { + cd liberation-fonts-${version} + make + cd liberation-fonts-ttf-${version} + for i in *.ttf; do + install -m 644 -D "${i}" "${PKG}/usr/share/fonts/TTF/liberation/${i}" + done +} |