summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorDorianXGH2020-11-01 19:46:42 +0100
committerDorianXGH2020-11-01 19:46:42 +0100
commitdc45b8f6107a50e9dd613872cd45e52ea214ba78 (patch)
treecd25d9f8219c1db2669a4cae5fee91a7c98f8779
downloadaur-dc45b8f6107a50e9dd613872cd45e52ea214ba78.tar.gz
inital commit
-rw-r--r--.SRCINFO13
-rw-r--r--.gitignore4
-rw-r--r--PKGBUILD18
3 files changed, 35 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO
new file mode 100644
index 000000000000..1eb27d9de737
--- /dev/null
+++ b/.SRCINFO
@@ -0,0 +1,13 @@
+pkgbase = ttf-comic-mono-git
+ pkgdesc = like the famous font but monospace and with adjusted metric
+ pkgver = 1
+ pkgrel = 1
+ arch = any
+ license = MIT
+ makedepends = git
+ provides = comic-mono
+ source = git+https://github.com/dtinth/comic-mono-font.git
+ md5sums = SKIP
+
+pkgname = ttf-comic-mono-git
+
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 000000000000..018a3de08144
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,4 @@
+*
+!PKGBUILD
+!.SRCINFO
+!.gitignore
diff --git a/PKGBUILD b/PKGBUILD
new file mode 100644
index 000000000000..83195b1e82f1
--- /dev/null
+++ b/PKGBUILD
@@ -0,0 +1,18 @@
+# Maintainer: Dorian Bourgeoisat <dorian dot bourgeoisat at icloud dot com>
+pkgname=ttf-comic-mono-git
+pkgver=1
+pkgrel=1
+pkgdesc="like the famous font but monospace and with adjusted metric"
+license=('MIT')
+arch=('any')
+makedepends=('git')
+provides=("comic-mono")
+
+source=("git+https://github.com/dtinth/comic-mono-font.git")
+md5sums=('SKIP')
+
+package() {
+ cd "$srcdir/comic-mono-font"
+ install -d "$pkgdir/usr/share/fonts/TTF"
+ install -Dm755 *.ttf "$pkgdir/usr/share/fonts/TTF"
+}