summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarkus Weimar2017-06-03 17:18:59 +0200
committerMarkus Weimar2017-06-03 17:18:59 +0200
commitab0da7202fa5f51f753bb46f23eced34062f15b3 (patch)
treef8716e682bd693a520145e521760270efd2832c0
downloadaur-ab0da7202fa5f51f753bb46f23eced34062f15b3.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..29f7e1b74aa7
--- /dev/null
+++ b/.SRCINFO
@@ -0,0 +1,18 @@
+# Generated by mksrcinfo v8
+# Sat Jun 3 14:57:42 UTC 2017
+pkgbase = ttf-iosevka-ss09
+ 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-ss09-1.13.0.zip
+ source = https://raw.githubusercontent.com/be5invis/Iosevka/master/LICENSE.md
+ sha256sums = ec28cfffd06e0f3ed04d342bdae88ec53df529f3723cda0084d9f0af2f8c179a
+ sha256sums = 6def40494d348d87c383513bab0979ba4ce26ad96249d58df04cf811f866c63f
+
+pkgname = ttf-iosevka-ss09
+
diff --git a/PKGBUILD b/PKGBUILD
new file mode 100644
index 000000000000..a9259343ef19
--- /dev/null
+++ b/PKGBUILD
@@ -0,0 +1,20 @@
+# Maintainer: Markus Weimar <mail@markusweimar.de>
+pkgname=ttf-iosevka-ss09
+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-ss09-${pkgver}.zip"
+ "https://raw.githubusercontent.com/be5invis/Iosevka/master/LICENSE.md")
+sha256sums=('ec28cfffd06e0f3ed04d342bdae88ec53df529f3723cda0084d9f0af2f8c179a'
+ '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
+}