summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorAdrian Perez de Castro2017-01-09 15:28:20 +0200
committerAdrian Perez de Castro2017-01-09 15:28:20 +0200
commit5045ca4f6b0e1a9074c1e1016cd140c3102cbcd5 (patch)
treeaa5102e95640b52aa539d6c684b02a9875977056
downloadaur-5045ca4f6b0e1a9074c1e1016cd140c3102cbcd5.tar.gz
Initial import
-rw-r--r--.SRCINFO13
-rw-r--r--PKGBUILD17
2 files changed, 30 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO
new file mode 100644
index 000000000000..6daf58327bcf
--- /dev/null
+++ b/.SRCINFO
@@ -0,0 +1,13 @@
+pkgbase = ttf-istok
+ pkgver = 1.0.1
+ pkgrel = 1
+ url = https://code.google.com/archive/p/istok/
+ arch = any
+ license = GPL3
+ provides = ttf-istok-ibx
+ conflicts = ttf-istok-ibx
+ source = https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/istok/istok-ttf-1.0.1.tar.xz
+ sha512sums = 8971a7e54affe64e4f093415120e2ef7b7b3ae38bd3a49b83d8241e2dc346b63e25de9565fc2e4ea7845dad24babceba9c43cd2f7cc9a8359fde80d43e29a713
+
+pkgname = ttf-istok
+
diff --git a/PKGBUILD b/PKGBUILD
new file mode 100644
index 000000000000..7e5ee7c9491e
--- /dev/null
+++ b/PKGBUILD
@@ -0,0 +1,17 @@
+# Maintainer: Adrián Pérez de Castro <aperez@igalia.com>
+pkgname='ttf-istok'
+pkgver='1.0.1'
+pkgrel='1'
+arch=('any')
+license=('GPL3')
+description='Hinted sans-serif typeface intended for LCD displays'
+url='https://code.google.com/archive/p/istok/'
+source=("https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/istok/istok-ttf-${pkgver}.tar.xz")
+sha512sums=('8971a7e54affe64e4f093415120e2ef7b7b3ae38bd3a49b83d8241e2dc346b63e25de9565fc2e4ea7845dad24babceba9c43cd2f7cc9a8359fde80d43e29a713')
+conflicts=('ttf-istok-ibx')
+provides=('ttf-istok-ibx')
+
+package () {
+ install -m755 -d "${pkgdir}/usr/share/fonts/ttf-istok/"
+ install -m644 -t "${pkgdir}/usr/share/fonts/ttf-istok/" "${srcdir}"/*.ttf
+}