summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorRoman Holovin2019-07-18 19:17:49 +0300
committerRoman Holovin2019-07-18 19:17:49 +0300
commit9d0f40c668212dbf935493888494c493f1f1c0c0 (patch)
tree409bfbc0fac1117b85d6a1128b05c6d468485856
downloadaur-9d0f40c668212dbf935493888494c493f1f1c0c0.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..7e4a738b4fb6
--- /dev/null
+++ b/.SRCINFO
@@ -0,0 +1,12 @@
+pkgbase = ttf-apl385
+ pkgdesc = Unicode monospaced font
+ pkgver = 1.0.0
+ pkgrel = 1
+ url = http://apl385.com/fonts/index.htm
+ arch = any
+ license = custom:"Public Domain"
+ source = http://apl385.com/fonts/apl385.zip
+ sha256sums = 2fccdb3137bc985fb5977c5e6b05f93611b277a46ef8883a72d86cd0ad76588c
+
+pkgname = ttf-apl385
+
diff --git a/PKGBUILD b/PKGBUILD
new file mode 100644
index 000000000000..662c4a52406a
--- /dev/null
+++ b/PKGBUILD
@@ -0,0 +1,20 @@
+# Maintainer: Roman Holovin <https://wiki.archlinux.org/index.php/Special:EmailUser/Dantix>
+
+pkgname=ttf-apl385
+pkgver=1.0.0
+pkgrel=1
+
+pkgdesc="Unicode monospaced font"
+url="http://apl385.com/fonts/index.htm"
+license=('custom:"Public Domain"')
+
+arch=('any')
+source=("http://apl385.com/fonts/apl385.zip")
+sha256sums=('2fccdb3137bc985fb5977c5e6b05f93611b277a46ef8883a72d86cd0ad76588c')
+
+package() {
+ cd "$srcdir"
+
+ install -d "$pkgdir"/usr/share/fonts/TTF
+ install -m644 *.ttf "$pkgdir"/usr/share/fonts/TTF
+}