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