summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorVictor Tran2017-03-20 18:02:38 +1100
committerVictor Tran2017-03-20 18:02:38 +1100
commitec74921c1b6bf4393655056599b6db4a69094f5a (patch)
tree801c427d25987879ca63d2658879469500364455
downloadaur-ec74921c1b6bf4393655056599b6db4a69094f5a.tar.gz
Initial Commit
-rw-r--r--.SRCINFO12
-rw-r--r--PKGBUILD20
2 files changed, 32 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO
new file mode 100644
index 000000000000..b5151ea8ff0f
--- /dev/null
+++ b/.SRCINFO
@@ -0,0 +1,12 @@
+pkgbase = ttf-contemporary
+ pkgdesc = Contemporary Typeface
+ pkgver = 1.0
+ pkgrel = 0
+ url = http://vicr123.github.io/contemporary
+ arch = any
+ license = custom:OFL
+ source = ttf-contemporary-1.0::https://vicr123.github.io/typeface/contemporary.zip
+ sha256sums = SKIP
+
+pkgname = ttf-contemporary
+
diff --git a/PKGBUILD b/PKGBUILD
new file mode 100644
index 000000000000..0e3ea01de6e2
--- /dev/null
+++ b/PKGBUILD
@@ -0,0 +1,20 @@
+
+# Maintainer: Victor Tran <vicr12345 at gmail dot com>
+pkgname=ttf-contemporary
+pkgver=1.0
+pkgrel=0
+pkgdesc="Contemporary Typeface"
+arch=("any")
+url="http://vicr123.github.io/contemporary"
+license=('custom:OFL')
+depends=()
+makedepends=()
+source=("$pkgname-$pkgver"::'https://vicr123.github.io/typeface/contemporary.zip')
+sha256sums=('SKIP')
+
+package() {
+ mkdir -p "$pkgdir/usr/share/fonts/TTF/"
+ cp "$srcdir/Contemporary-"* "$pkgdir/usr/share/fonts/TTF/"
+ mkdir -p "$pkgdir/usr/share/licenses/ttf-contemporary/"
+ cp "$srcdir/OFL.txt" "$pkgdir/usr/share/licenses/ttf-contemporary/LICENSE"
+}