summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorjdarch2015-07-27 13:38:03 +0200
committerjdarch2015-07-27 13:38:03 +0200
commit9922a679917dde3b64c359d0d9f3fb1dabfc1553 (patch)
treec3b1ea40d38674cdbacd309cc9e66ae1306782ca
downloadaur-9922a679917dde3b64c359d0d9f3fb1dabfc1553.tar.gz
Initial import
-rw-r--r--.SRCINFO17
-rw-r--r--ChangeLog.otf-vollkorn21
-rw-r--r--PKGBUILD23
-rw-r--r--otf-vollkorn.install15
4 files changed, 76 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO
new file mode 100644
index 000000000000..383c3de0473f
--- /dev/null
+++ b/.SRCINFO
@@ -0,0 +1,17 @@
+pkgbase = otf-vollkorn
+ pkgdesc = Vollkorn typeface by Friedrich Althausen (OpenType)
+ pkgver = 3.005
+ pkgrel = 1
+ url = http://vollkorn-typeface.com/
+ install = otf-vollkorn.install
+ changelog = ChangeLog.otf-vollkorn
+ arch = any
+ license = custom:SIL Open Font License
+ depends = fontconfig
+ depends = xorg-font-utils
+ source = http://vollkorn-typeface.com/download/vollkorn-3-005.zip
+ md5sums = 3ec0bfdae17dc8dd088d6be4001169bf
+ sha512sums = 38e9171016c0902a972bd53bdca65808807e057e1025b96cd8dbec2e0ff1169276a52ebe6ad3b155892fc5b6af248acd20ee54c7f33c2e34d7da87d3858450c0
+
+pkgname = otf-vollkorn
+
diff --git a/ChangeLog.otf-vollkorn b/ChangeLog.otf-vollkorn
new file mode 100644
index 000000000000..5f75cc5c96f5
--- /dev/null
+++ b/ChangeLog.otf-vollkorn
@@ -0,0 +1,21 @@
+2014-08-19 jdarch <jda -dot- cloud -plus- archlinux -at- gmail -dot- com>
+
+ * 3.005-1 :
+ update release:
+ - fixing of catalan l•l and L•L (3.005)
+ - fixing of version counters and style linking (3.005)
+ - added underlinePosition and underlineThickness (3.005)
+
+2014-02-12 jdarch <jda -dot- cloud -plus- archlinux -at- gmail -dot- com>
+
+ * 3.003-1 :
+ update release:
+ - fix dot of j (3.003)
+ - semibold name fix, corrected small g-commaaccent,
+ tidied up automatic metrics (3.002)
+
+2014-01-25
+jdarch <jda -dot- cloud -plus- archlinux -at- gmail -dot- com>
+
+ * 3.001-1 :
+ initial release
diff --git a/PKGBUILD b/PKGBUILD
new file mode 100644
index 000000000000..6305026ee5d3
--- /dev/null
+++ b/PKGBUILD
@@ -0,0 +1,23 @@
+# Maintainer: jdarch <jda -dot- cloud -plus- archlinux -at- gmail -dot- com>
+
+pkgname=otf-vollkorn
+pkgdesc="Vollkorn typeface by Friedrich Althausen (OpenType)"
+url=('http://vollkorn-typeface.com/')
+license=('custom:SIL Open Font License')
+pkgver=3.005
+pkgrel=1
+changelog=ChangeLog.${pkgname}
+depends=('fontconfig' 'xorg-font-utils')
+arch=('any')
+install=$pkgname.install
+
+source=(http://vollkorn-typeface.com/download/vollkorn-${pkgver//./-}.zip)
+md5sums=('3ec0bfdae17dc8dd088d6be4001169bf')
+sha512sums=('38e9171016c0902a972bd53bdca65808807e057e1025b96cd8dbec2e0ff1169276a52ebe6ad3b155892fc5b6af248acd20ee54c7f33c2e34d7da87d3858450c0')
+
+package() {
+ install -d "${pkgdir}/usr/share/fonts/OTF"
+ install -m644 "${srcdir}/PS-OTF/"*.otf "${pkgdir}/usr/share/fonts/OTF/"
+ install -D -m644 "${srcdir}/OpenFontLicense.txt" "${pkgdir}/usr/share/licenses/${pkgname}/OpenFontLicense.txt"
+ install -D -m644 "${srcdir}/Fontlog.txt" "${pkgdir}/usr/share/doc/${pkgname}/Fontlog.txt"
+}
diff --git a/otf-vollkorn.install b/otf-vollkorn.install
new file mode 100644
index 000000000000..feb9bd7b5b8f
--- /dev/null
+++ b/otf-vollkorn.install
@@ -0,0 +1,15 @@
+post_install() {
+ echo -n "Updating font cache... "
+ fc-cache -fs >/dev/null
+ mkfontscale /usr/share/fonts/OTF
+ mkfontdir /usr/share/fonts/OTF
+ echo "done"
+}
+
+post_upgrade() {
+ post_install
+}
+
+post_remove() {
+ post_install
+}