Skip to content
Snippets Groups Projects
Unverified Commit d784847d authored by Jeremy Soller's avatar Jeremy Soller Committed by GitHub
Browse files

Merge pull request #146 from jD91mZM2/hack

Add ttf-hack recipe
parents 9c7a0fdf f3e129c3
No related branches found
No related tags found
No related merge requests found
VERSION=3.003
TAR="https://github.com/source-foundry/Hack/releases/download/v$VERSION/Hack-v$VERSION-ttf.tar.xz"
function recipe_version {
echo "$VERSION"
skip=1
}
function recipe_update {
echo "skipping update"
skip=1
}
function recipe_build {
echo "skipping build"
skip=1
}
function recipe_test {
echo "skipping test"
skip=1
}
function recipe_clean {
echo "skipping clean"
skip=1
}
function recipe_stage {
dest="$(realpath "$1")"
for file in *.ttf; do
install -D -m 644 "$file" "$dest/ui/fonts/Mono/Hack/$file"
done
skip=1
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment