summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorAdrian Perez de Castro2020-11-09 15:10:56 +0200
committerAdrian Perez de Castro2020-11-09 15:10:56 +0200
commit929939544ed945a360eb8ea571638b7da6594e0e (patch)
treefab8199e4616263b8ed3acdf42449bd73fed6380
downloadaur-929939544ed945a360eb8ea571638b7da6594e0e.tar.gz
Initial import
-rw-r--r--.SRCINFO13
-rw-r--r--.gitignore4
-rw-r--r--PKGBUILD17
3 files changed, 34 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO
new file mode 100644
index 000000000000..7d4584877e4d
--- /dev/null
+++ b/.SRCINFO
@@ -0,0 +1,13 @@
+pkgbase = ttf-work-sans
+ pkgver = 2.010
+ pkgrel = 1
+ url = http://weiweihuanghuang.github.io/Work-Sans/
+ arch = any
+ license = custom:OFL
+ replaces = otf-work-sans-ibx
+ replaces = otf-work-sans
+ source = ttf-work-sans-2.010.tar.gz::https://github.com/weiweihuanghuang/Work-Sans/archive/v2.010.tar.gz
+ sha512sums = 37396630564156a16ddcc386f0f8abfe41e624cd3f9dbbaf8226772b2511e311af3ccd75308c9a6562001ec2903eefaac5fec032d08b8fe3066fc30fbdf085f4
+
+pkgname = ttf-work-sans
+
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 000000000000..218620e2fb38
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,4 @@
+*
+!/PKGBUILD
+!/.SRCINFO
+!/.gitignore
diff --git a/PKGBUILD b/PKGBUILD
new file mode 100644
index 000000000000..094c8dc07244
--- /dev/null
+++ b/PKGBUILD
@@ -0,0 +1,17 @@
+# Maintainer: Adrian Perez de Castro <aperez@igalia.com>
+pkgdecs='Typeface based loosely on early Grotesques with extensive OpenType features'
+pkgname=ttf-work-sans
+pkgver=2.010
+pkgrel=1
+replaces=(otf-work-sans-ibx otf-work-sans)
+arch=(any)
+license=(custom:OFL)
+url=http://weiweihuanghuang.github.io/Work-Sans/
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/weiweihuanghuang/Work-Sans/archive/v${pkgver}.tar.gz")
+sha512sums=('37396630564156a16ddcc386f0f8abfe41e624cd3f9dbbaf8226772b2511e311af3ccd75308c9a6562001ec2903eefaac5fec032d08b8fe3066fc30fbdf085f4')
+
+package () {
+ cd "Work-Sans-${pkgver}"
+ install -Dm644 -t "${pkgdir}/usr/share/fonts/${pkgname}" fonts/static/TTF/*.ttf
+ install -Dm644 OFL.txt "${pkgdir}/usr/share/licenses/${pkgname}/COPYING"
+}