summarylogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.SRCINFO15
-rw-r--r--PKGBUILD27
2 files changed, 42 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO
new file mode 100644
index 000000000000..84b8397da39a
--- /dev/null
+++ b/.SRCINFO
@@ -0,0 +1,15 @@
+# Generated by mksrcinfo v8
+# Tue Mar 20 18:19:08 UTC 2018
+pkgbase = tamsyn-console-font
+ pkgdesc = A monospaced bitmap font for the console
+ pkgver = 1.11
+ pkgrel = 1
+ url = http://www.fial.com/~scott/tamsyn-font
+ arch = any
+ license = custom
+ conflicts = tamsyn-font
+ source = http://www.fial.com/~scott/tamsyn-font/download/tamsyn-font-1.11.tar.gz
+ sha256sums = 97be1b604441b725548c454a92603993eb96e493f508845638a86c8d64fbf24e
+
+pkgname = tamsyn-console-font
+
diff --git a/PKGBUILD b/PKGBUILD
new file mode 100644
index 000000000000..d5360ac90b52
--- /dev/null
+++ b/PKGBUILD
@@ -0,0 +1,27 @@
+# Maintainer: Andy Weidenbaum <archbaum@gmail.com>
+# Contributor: Sven-Hendrik Haase <sh@lutzhaase.com>
+# Contributor: Scott Fial <scott at fial dot com>
+
+pkgname=tamsyn-console-font
+pkgver=1.11
+pkgrel=1
+pkgdesc="A monospaced bitmap font for the console"
+arch=('any')
+url="http://www.fial.com/~scott/tamsyn-font"
+license=('custom')
+source=(http://www.fial.com/~scott/${pkgname/-console}/download/${pkgname/-console/}-$pkgver.tar.gz)
+sha256sums=('97be1b604441b725548c454a92603993eb96e493f508845638a86c8d64fbf24e')
+conflicts=('tamsyn-font')
+
+package() {
+ cd "$srcdir/${pkgname/-console/}-$pkgver"
+
+ msg2 'Installing license...'
+ install -Dm 644 LICENSE -t "$pkgdir/usr/share/licenses/$pkgname"
+
+ msg2 'Installing documentation...'
+ install -Dm 644 README -t "$pkgdir/usr/share/doc/$pkgname"
+
+ msg2 'Installing...'
+ install -Dm 644 *.psf.gz -t "$pkgdir/usr/share/kbd/consolefonts"
+}