summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Pflug2018-08-17 12:48:03 -0400
committerDavid Pflug2018-08-17 12:52:40 -0400
commit825a4ffe658fe043f3dd45f6772fe3409139406e (patch)
treebe7682729e9435d656785ed5db7a6b6270fcf2c1
downloadaur-825a4ffe658fe043f3dd45f6772fe3409139406e.tar.gz
Initial commit
-rw-r--r--.SRCINFO12
-rw-r--r--PKGBUILD18
2 files changed, 30 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO
new file mode 100644
index 000000000000..1865e813fadb
--- /dev/null
+++ b/.SRCINFO
@@ -0,0 +1,12 @@
+pkgbase = ttf-bitstream-charter
+ pkgdesc = OTF and TTF versions of a serif typeface designed by Matthew Carter for low resolution devices
+ pkgver = 1.0
+ pkgrel = 1
+ url = https://practicaltypography.com/charter.html
+ arch = any
+ license = custom
+ source = http://practicaltypography.com/fonts/charter.zip
+ sha256sums = bcddb75c25406def3d461c6f161ce10f3b32433f5b2109fc0716782ff21285b7
+
+pkgname = ttf-bitstream-charter
+
diff --git a/PKGBUILD b/PKGBUILD
new file mode 100644
index 000000000000..8d9b50c24ce8
--- /dev/null
+++ b/PKGBUILD
@@ -0,0 +1,18 @@
+# Maintainer: David Pflug <david@pflug.email>
+pkgname=ttf-bitstream-charter
+pkgver=1.0
+pkgrel=1
+pkgdesc="OTF and TTF versions of a serif typeface designed by Matthew Carter for low resolution devices"
+arch=('any')
+url="https://practicaltypography.com/charter.html"
+license=('custom')
+source=("http://practicaltypography.com/fonts/charter.zip")
+sha256sums=('bcddb75c25406def3d461c6f161ce10f3b32433f5b2109fc0716782ff21285b7')
+
+package() {
+ install -d "${pkgdir}"/usr/share/fonts/OTF
+ install -d "${pkgdir}"/usr/share/fonts/TTF
+ install -Dm644 "${srcdir}"/charter/ttf/*.ttf "${pkgdir}"/usr/share/fonts/TTF
+ install -Dm644 "${srcdir}"/charter/otf/*.otf "${pkgdir}"/usr/share/fonts/OTF
+ install -Dm644 "${srcdir}"/charter/license.txt "${pkgdir}"/usr/share/licenses/"${pkgname}"/LICENSE
+} \ No newline at end of file