summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarkus Weimar2017-06-03 17:21:22 +0200
committerMarkus Weimar2017-06-03 17:21:22 +0200
commit239ea591f2f456f3f429c99bffb2befff02fbbf2 (patch)
tree0b61d6f4ea4773cb43181bc37704eff556eb475a
downloadaur-239ea591f2f456f3f429c99bffb2befff02fbbf2.tar.gz
Initial commit.
-rw-r--r--.SRCINFO18
-rw-r--r--PKGBUILD20
2 files changed, 38 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO
new file mode 100644
index 000000000000..bf6a737a5bf3
--- /dev/null
+++ b/.SRCINFO
@@ -0,0 +1,18 @@
+# Generated by mksrcinfo v8
+# Sat Jun 3 15:08:33 UTC 2017
+pkgbase = ttf-iosevka-term-ss11
+ pkgdesc = A slender monospace sans-serif and slab-serif typeface inspired by Pragmata Pro, M+ and PF DIN Mono.
+ pkgver = 1.13.0
+ pkgrel = 1
+ url = https://be5invis.github.io/Iosevka/
+ arch = any
+ license = custom:OFL
+ depends = fontconfig
+ depends = xorg-font-utils
+ source = https://github.com/be5invis/Iosevka/releases/download/v1.13.0/iosevka-term-ss11-1.13.0.zip
+ source = https://raw.githubusercontent.com/be5invis/Iosevka/master/LICENSE.md
+ sha256sums = 2efe9aabbbf804d07b1f0ffcb4fe9d4cba135a99ea1a50e3fada933468090fce
+ sha256sums = 6def40494d348d87c383513bab0979ba4ce26ad96249d58df04cf811f866c63f
+
+pkgname = ttf-iosevka-term-ss11
+
diff --git a/PKGBUILD b/PKGBUILD
new file mode 100644
index 000000000000..da8ce325fa47
--- /dev/null
+++ b/PKGBUILD
@@ -0,0 +1,20 @@
+# Maintainer: Markus Weimar <mail@markusweimar.de>
+pkgname=ttf-iosevka-term-ss11
+pkgver=1.13.0
+pkgrel=1
+pkgdesc='A slender monospace sans-serif and slab-serif typeface inspired by Pragmata Pro, M+ and PF DIN Mono.'
+arch=('any')
+url='https://be5invis.github.io/Iosevka/'
+license=('custom:OFL')
+depends=('fontconfig' 'xorg-font-utils')
+source=("https://github.com/be5invis/Iosevka/releases/download/v${pkgver}/iosevka-term-ss11-${pkgver}.zip"
+ "https://raw.githubusercontent.com/be5invis/Iosevka/master/LICENSE.md")
+sha256sums=('2efe9aabbbf804d07b1f0ffcb4fe9d4cba135a99ea1a50e3fada933468090fce'
+ '6def40494d348d87c383513bab0979ba4ce26ad96249d58df04cf811f866c63f')
+
+package() {
+ cd ${srcdir}
+ install -d ${pkgdir}/usr/share/fonts/TTF/
+ install -m644 ttf/*.ttf ${pkgdir}/usr/share/fonts/TTF/
+ install -D -m644 LICENSE.md ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE.md
+}