summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorLennard Hofmann2020-02-09 10:43:48 +0100
committerLennard Hofmann2020-02-09 10:43:48 +0100
commit62805c35ef7d127541782758dffb9b1ecbf1991e (patch)
tree4dff83fe01206e5b851f384d8b94eea4697d4686
downloadaur-62805c35ef7d127541782758dffb9b1ecbf1991e.tar.gz
Initial commit
-rw-r--r--.SRCINFO14
-rw-r--r--PKGBUILD18
2 files changed, 32 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO
new file mode 100644
index 000000000000..fd74ad8f7d43
--- /dev/null
+++ b/.SRCINFO
@@ -0,0 +1,14 @@
+pkgbase = otf-minecraft
+ pkgdesc = Font based off Minecraft’s original ASCII charts
+ pkgver = 1.0
+ pkgrel = 1
+ url = https://www.fontspace.com/jdgraphics/minecraft
+ arch = any
+ license = custom:free for personal use
+ depends = fontconfig
+ depends = xorg-font-utils
+ source = otf-minecraft-1.0.zip::https://www.fontspace.com/get/family/m3zm2
+ sha256sums = 36acb15ae59e9eed51e581b0a3ad4d56761bd0db7c0902d3e3c517d29fa9246e
+
+pkgname = otf-minecraft
+
diff --git a/PKGBUILD b/PKGBUILD
new file mode 100644
index 000000000000..701cbe3aee3d
--- /dev/null
+++ b/PKGBUILD
@@ -0,0 +1,18 @@
+# Maintainer: Lennard Hofmann <lennard dot hofmann at web dot de>
+pkgname=otf-minecraft
+pkgver=1.0
+pkgrel=1
+pkgdesc='Font based off Minecraft’s original ASCII charts'
+arch=(any)
+url="https://www.fontspace.com/jdgraphics/minecraft"
+license=('custom:free for personal use')
+depends=(fontconfig xorg-font-utils)
+source=("$pkgname-$pkgver.zip::https://www.fontspace.com/get/family/m3zm2")
+sha256sums=('36acb15ae59e9eed51e581b0a3ad4d56761bd0db7c0902d3e3c517d29fa9246e')
+
+package() {
+ install -Dm644 MinecraftBoldItalic-*.otf "$pkgdir/usr/share/fonts/OTF/MinecraftBoldItalic.otf"
+ install -Dm644 MinecraftBold-*.otf "$pkgdir/usr/share/fonts/OTF/MinecraftBold.otf"
+ install -Dm644 MinecraftItalic-*.otf "$pkgdir/usr/share/fonts/OTF/MinecraftItalic.otf"
+ install -Dm644 MinecraftRegular-*.otf "$pkgdir/usr/share/fonts/OTF/MinecraftRegular.otf"
+}