summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrej Radovic2020-02-21 15:50:31 +0100
committerAndrej Radovic2020-02-21 15:50:31 +0100
commit87f527704fa1febc43363a5f7bd4c3d8c65243eb (patch)
treecc86cc5f4af717f940ca632b3ae4f34993b911e0
downloadaur-87f527704fa1febc43363a5f7bd4c3d8c65243eb.tar.gz
Initial commit.
-rw-r--r--.SRCINFO13
-rw-r--r--PKGBUILD20
2 files changed, 33 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO
new file mode 100644
index 000000000000..434f3c9ac53f
--- /dev/null
+++ b/.SRCINFO
@@ -0,0 +1,13 @@
+pkgbase = otf-xcharter
+ pkgdesc = Extension of Bitstream Charter, which provides small caps, oldstyle figures and superior figures in all four styles, Cyrillic and Greek.
+ pkgver = 1.205
+ pkgrel = 1
+ url = https://www.ctan.org/pkg/xcharter
+ arch = any
+ license = custom:LPPL
+ depends = fontconfig
+ source = http://mirrors.ctan.org/fonts/xcharter.zip
+ sha1sums = 568183e2024e3f01e19c3bdc4020395f276ca99d
+
+pkgname = otf-xcharter
+
diff --git a/PKGBUILD b/PKGBUILD
new file mode 100644
index 000000000000..14b9bf4eea3f
--- /dev/null
+++ b/PKGBUILD
@@ -0,0 +1,20 @@
+# Maintainer: Andrej Radović (r.andrej@gmail.com)
+
+pkgname=otf-xcharter
+pkgver=1.205
+pkgrel=1
+depends=('fontconfig')
+pkgdesc="Extension of Bitstream Charter, which provides small caps, "\
+"oldstyle figures and superior figures in all four styles, Cyrillic and Greek."
+url="https://www.ctan.org/pkg/xcharter"
+arch=('any')
+license=('custom:LPPL')
+source=(http://mirrors.ctan.org/fonts/xcharter.zip)
+sha1sums=('568183e2024e3f01e19c3bdc4020395f276ca99d')
+
+package() {
+ install -m755 -d "${pkgdir}"/usr/share/fonts/"${pkgname}"
+ cd xcharter/opentype
+ ls
+ install -m644 *.otf "${pkgdir}"/usr/share/fonts/"${pkgname}"
+}