summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorDan Johansen2023-07-17 16:47:39 +0200
committerDan Johansen2023-07-17 16:47:39 +0200
commit17d3a37c9726fc46d09f1fcfbd2aa22d1be52ce4 (patch)
treeccd48cee1c4bde2eace1875a867eba0721dc2393
downloadaur-17d3a37c9726fc46d09f1fcfbd2aa22d1be52ce4.tar.gz
initial commit, version 1.0
Signed-off-by: Dan Johansen <strit@strits.dk>
-rw-r--r--.SRCINFO11
-rw-r--r--PKGBUILD17
2 files changed, 28 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO
new file mode 100644
index 000000000000..bf2da2339fe1
--- /dev/null
+++ b/.SRCINFO
@@ -0,0 +1,11 @@
+pkgbase = ttf-futurama-fonts
+ pkgdesc = Fonts from or inspired by the hit cartoon Futurama
+ pkgver = 1.0
+ pkgrel = 1
+ url = https://www.dafont.com/futurama.font
+ arch = any
+ license = unknown
+ source = ttf-futurama-fonts.zip::https://dl.dafont.com/dl/?f=futurama
+ sha256sums = 41a706f4d9ae46659f0abed3627af680ea755371734f50cde8ecb13e55446a94
+
+pkgname = ttf-futurama-fonts
diff --git a/PKGBUILD b/PKGBUILD
new file mode 100644
index 000000000000..d63ed6fac046
--- /dev/null
+++ b/PKGBUILD
@@ -0,0 +1,17 @@
+# Maintainer: Dan Johansen <strit@strits.dk>
+
+pkgname=ttf-futurama-fonts
+pkgver=1.0
+pkgrel=1
+pkgdesc='Fonts from or inspired by the hit cartoon Futurama'
+arch=('any')
+url='https://www.dafont.com/futurama.font'
+license=('unknown')
+source=("$pkgname.zip::https://dl.dafont.com/dl/?f=futurama")
+sha256sums=('41a706f4d9ae46659f0abed3627af680ea755371734f50cde8ecb13e55446a94')
+
+
+package() {
+ install -d "$pkgdir"/usr/share/fonts/TTF
+ install -m644 *.ttf "$pkgdir"/usr/share/fonts/TTF
+}