diff options
author | Leo <thinkabit.ukim@gmail.com> | 2019-08-27 18:52:35 -0300 |
---|---|---|
committer | Leo <thinkabit.ukim@gmail.com> | 2019-08-27 18:52:35 -0300 |
commit | de826fbae7c4a8b0d5346c16cbbb648920a73711 (patch) | |
tree | 69bd5b8c49f7f17f5b8e144be3073922b0e2aaba /testing/font-hermit-nerd | |
parent | 6034d5a5faac80401d54bce520d1aded84942589 (diff) | |
download | aports-de826fbae7c4a8b0d5346c16cbbb648920a73711.tar.bz2 aports-de826fbae7c4a8b0d5346c16cbbb648920a73711.tar.xz |
testing/font-hermit-nerd: new aport
https://nerdfonts.com
Iconic font aggregator, collection and patcher
Diffstat (limited to 'testing/font-hermit-nerd')
-rw-r--r-- | testing/font-hermit-nerd/APKBUILD | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/testing/font-hermit-nerd/APKBUILD b/testing/font-hermit-nerd/APKBUILD new file mode 100644 index 0000000000..72eba86a96 --- /dev/null +++ b/testing/font-hermit-nerd/APKBUILD @@ -0,0 +1,20 @@ +# Maintainer: Leo <thinkabit.ukim@gmail.com> +pkgname=font-hermit-nerd +pkgver=2.0.0 +pkgrel=0 +pkgdesc="Iconic font aggregator, collection and patcher" +url="https://nerdfonts.com" +arch="noarch" +options="!check" # No testsuite provided +license="MIT" +depends="fontconfig" +source="$pkgname-$pkgver.zip::https://github.com/ryanoasis/nerd-fonts/releases/download/v$pkgver/Hermit.zip" +builddir="$srcdir" + +package() { + find . -iname 'Hurmit*.otf' | while read -r otf; do + install -Dm644 "$otf" "$pkgdir"/usr/share/fonts/OTF/"$otf" + done +} + +sha512sums="8bd0b7e7ed07ab9e5ecb4b348203aa298aecb078ae6b71065d089193aa59956377d9b3d59d65b0d397f157614decc84cc521b7df61878fd8d071bc5e0c29f423 font-hermit-nerd-2.0.0.zip" |