summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarkus Weimar2018-07-02 17:39:54 +0200
committerMarkus Weimar2018-07-02 17:39:54 +0200
commitfc6ed24aa53b666553cd8281d2a874d11aab1975 (patch)
tree0098f942f0f8b27d29cd89c6644731c2e1e90b2e
downloadaur-fc6ed24aa53b666553cd8281d2a874d11aab1975.tar.gz
Initial commit. Version 5.000.
-rw-r--r--.SRCINFO17
-rw-r--r--PKGBUILD18
2 files changed, 35 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO
new file mode 100644
index 000000000000..90c86be7b9a4
--- /dev/null
+++ b/.SRCINFO
@@ -0,0 +1,17 @@
+# Generated by mksrcinfo v8
+# Mon Jul 2 15:37:47 UTC 2018
+pkgbase = ttf-charis-sil
+ pkgdesc = A transitional serif typeface based on Bitstream Charter.
+ pkgver = 5.000
+ pkgrel = 1
+ url = https://software.sil.org/charis/
+ arch = any
+ license = custom:OFL
+ depends = fontconfig
+ depends = xorg-font-utils
+ conflicts = ttf-sil-fonts
+ source = https://software.sil.org/downloads/r/charis/CharisSIL-5.000.zip
+ sha256sums = 5e3e5473b30363008c289cc87e2aa584a0916087a63a3f689defa8e0cee09bfd
+
+pkgname = ttf-charis-sil
+
diff --git a/PKGBUILD b/PKGBUILD
new file mode 100644
index 000000000000..c1289cbd2a6b
--- /dev/null
+++ b/PKGBUILD
@@ -0,0 +1,18 @@
+# Maintainer: Markus Weimar <mail@markusweimar.de>
+pkgname=ttf-charis-sil
+pkgver=5.000
+pkgrel=1
+pkgdesc='A transitional serif typeface based on Bitstream Charter.'
+arch=('any')
+url='https://software.sil.org/charis/'
+license=('custom:OFL')
+depends=('fontconfig' 'xorg-font-utils')
+conflicts=('ttf-sil-fonts')
+source=("https://software.sil.org/downloads/r/charis/CharisSIL-${pkgver}.zip")
+sha256sums=('5e3e5473b30363008c289cc87e2aa584a0916087a63a3f689defa8e0cee09bfd')
+
+package() {
+ install -d ${pkgdir}/usr/share/fonts/TTF/
+ install -m644 ${srcdir}/CharisSIL-${pkgver}/*.ttf ${pkgdir}/usr/share/fonts/TTF/
+ install -D -m644 ${srcdir}/CharisSIL-${pkgver}/OFL.txt ${pkgdir}/usr/share/licenses/${pkgname}/OFL.txt
+}