From 147f41a0bd0f171227a2e10d4dd7be74874c27a9 Mon Sep 17 00:00:00 2001 From: qwjyh Date: Sat, 4 Nov 2023 18:25:42 +0900 Subject: [PATCH] init --- .gitignore | 1 + PKGBUILD | 20 ++++++++++++++++++++ 2 files changed, 21 insertions(+) create mode 100644 .gitignore create mode 100644 PKGBUILD diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..72e8ffc --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +* diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 0000000..5fb6612 --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,20 @@ +# Maintainer: qwjyh + +pkgname=ttf-juisee +pkgver=0.0.3 +pkgrel=1 +pkgdesc="A font for programming combined from JuliaMono and LINE Seed JP. " +arch=('any') +url='https://github.com/yuru7/juisee' +license=('custom:OFL-1.1') +source=("$url/releases/download/v$pkgver/Juisee_v$pkgver.zip" + "https://raw.githubusercontent.com/yuru7/juisee/main/LICENSE") + +sha256sums=('87725656b1e3cae9b097454269ce4c2828e2019290fd3752013071421a48bc7b' + '1b4e6393397b7be8b9419b4f238ee675a1fab94d05dde4fec738a83ae25ab3da') + +package() { + install -d "$pkgdir"/usr/share/fonts/TTF + install -m644 Juisee_v"$pkgver"/*.ttf "$pkgdir"/usr/share/fonts/TTF + install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/"$pkgname"/LICENSE +}