summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorMagnus Groß2017-10-10 14:24:45 +0200
committerMagnus Groß2017-10-10 14:24:45 +0200
commit26f3276f943af4ba60f8c5cefa02b42d2d64c26b (patch)
tree73ec0ce76e5889a54c6619df800b3a8fac87ba08
downloadaur-26f3276f943af4ba60f8c5cefa02b42d2d64c26b.tar.gz
Initial commit
-rw-r--r--.SRCINFO12
-rw-r--r--PKGBUILD17
2 files changed, 29 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO
new file mode 100644
index 000000000000..68bb14b4bc72
--- /dev/null
+++ b/.SRCINFO
@@ -0,0 +1,12 @@
+pkgbase = ttf-dijkstra
+ pkgdesc = A beautiful handwriting font of unknown origin, first popularized by E.W.Dijkstra.
+ pkgver = 1
+ pkgrel = 1
+ url = http://lucacardelli.name/indexartifacts.html
+ arch = i686
+ arch = x86_64
+ source = http://lucacardelli.name/Artifacts/Fonts/Pc/dijkstra.ttf
+ md5sums = SKIP
+
+pkgname = ttf-dijkstra
+
diff --git a/PKGBUILD b/PKGBUILD
new file mode 100644
index 000000000000..d1c0159ecf39
--- /dev/null
+++ b/PKGBUILD
@@ -0,0 +1,17 @@
+# Maintainer: Magnus Groß magnus dot gross 21 at gmail dot com
+pkgname=ttf-dijkstra
+pkgver=1
+pkgrel=1
+pkgdesc="A beautiful handwriting font of unknown origin, first popularized by E.W.Dijkstra."
+arch=('i686' 'x86_64')
+url="http://lucacardelli.name/indexartifacts.html"
+source=("http://lucacardelli.name/Artifacts/Fonts/Pc/dijkstra.ttf")
+md5sums=('SKIP')
+
+package() {
+ install -D "$srcdir/dijkstra.ttf" "$pkgdir/usr/share/fonts/TTF/dijkstra.ttf"
+}
+
+post_install() {
+ fc-cache
+}