kiss-stj

My KISS Linux repo for software I use on my computers.
git clone https://git.stjo.hn/kiss-stj
Log | Files | Refs | README | LICENSE

commit f70ea275925dc35e5c41dc36b9957406b4bf200b
parent 4ca3e93192af77675a51faec602181d63d2e445d
Author: St John Karp <contact@stjo.hn>
Date:   Mon,  6 Jun 2022 14:10:59 -0400

otf-hermit: Add package for otf-hermit

Hermit is a monospaced font for programming. See its homepage:
https://pcaro.es/hermit/

Diffstat:
Aextra/otf-hermit/build | 9+++++++++
Aextra/otf-hermit/checksums | 1+
Aextra/otf-hermit/post-install | 3+++
Aextra/otf-hermit/sources | 1+
Aextra/otf-hermit/version | 1+
5 files changed, 15 insertions(+), 0 deletions(-)

diff --git a/extra/otf-hermit/build b/extra/otf-hermit/build @@ -0,0 +1,9 @@ +#!/bin/sh -e + +mkdir -p "$1/usr/share/fonts/OTF/hermit" + +gzip --decompress --stdout packages/otf-hermit-2.0.tar.gz | + tar -x -C "$1/usr/share/fonts/OTF/hermit" + +# Ensure that font files are readable. +chmod 644 "$1/usr/share/fonts/OTF/hermit/*.otf" diff --git a/extra/otf-hermit/checksums b/extra/otf-hermit/checksums @@ -0,0 +1 @@ +46d2fe8904bd76b31ff19e22aaa128747af741cbe88ae2c51953728d21c409e1 diff --git a/extra/otf-hermit/post-install b/extra/otf-hermit/post-install @@ -0,0 +1,3 @@ +#!/bin/sh -e + +fc-cache -v diff --git a/extra/otf-hermit/sources b/extra/otf-hermit/sources @@ -0,0 +1 @@ +https://github.com/pcaro90/hermit/archive/refs/tags/vVERSION.tar.gz diff --git a/extra/otf-hermit/version b/extra/otf-hermit/version @@ -0,0 +1 @@ +2.0 1