summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorStick2020-10-19 20:26:21 -0400
committerStick2020-10-19 20:26:21 -0400
commit891772f04b59533b6eaf3a6614d0248b405f6747 (patch)
treeb6d3e34f1c1b94ee27d8f9b7fa838c4b78121476
downloadaur-891772f04b59533b6eaf3a6614d0248b405f6747.tar.gz
initial commit
https://www.brailleinstitute.org/freefont The Braille Institute recently released this font. Licensing is not clear; the website claims, "We are making it free for anyone to use, download here!"
-rw-r--r--.SRCINFO12
-rw-r--r--.gitignore3
-rw-r--r--PKGBUILD17
3 files changed, 32 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO
new file mode 100644
index 000000000000..3154a4615915
--- /dev/null
+++ b/.SRCINFO
@@ -0,0 +1,12 @@
+pkgbase = atkinson-hyperlegible-fonts
+ pkgdesc = typeface with greater legibility and readability for low vision readers
+ pkgver = 1
+ pkgrel = 1
+ url = https://www.brailleinstitute.org/freefont
+ arch = any
+ license = none
+ source = https://www.brailleinstitute.org/wp-content/uploads/atkinson-hyperlegible-font/Atkinson-Hyperlegible-Font-Print-and-Web-2020-0514.zip
+ sha256sums = 9e1a65d53ddadc8253791e958a07bf5aba210ef6155ea9c91b2b4c46bbce53e3
+
+pkgname = atkinson-hyperlegible-fonts
+
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 000000000000..d1b3656611f9
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,3 @@
+*.ttf
+src/
+pkg/
diff --git a/PKGBUILD b/PKGBUILD
new file mode 100644
index 000000000000..6736013eee2e
--- /dev/null
+++ b/PKGBUILD
@@ -0,0 +1,17 @@
+# Maintainer: Stick <stick@stma.is>
+
+pkgname=atkinson-hyperlegible-fonts
+pkgver=1
+pkgrel=1
+pkgdesc='typeface with greater legibility and readability for low vision readers'
+url='https://www.brailleinstitute.org/freefont'
+arch=('any')
+license=('none')
+source=('https://www.brailleinstitute.org/wp-content/uploads/atkinson-hyperlegible-font/Atkinson-Hyperlegible-Font-Print-and-Web-2020-0514.zip')
+sha256sums=('9e1a65d53ddadc8253791e958a07bf5aba210ef6155ea9c91b2b4c46bbce53e3')
+
+package() {
+ mkdir -p "$pkgdir"/usr/share/fonts/{TTF,OTF}
+ install -D -m0644 "$srcdir"/Atkinson-Hyperlegible-Font-Print-and-Web-2020-0514/"Print Fonts"/*.otf "$pkgdir"/usr/share/fonts/OTF/
+ install -D -m0644 "$srcdir"/Atkinson-Hyperlegible-Font-Print-and-Web-2020-0514/"Web Fonts"/TTF/*.ttf "$pkgdir"/usr/share/fonts/TTF/
+}