summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorEinsam2022-04-03 16:26:03 +0800
committerEinsam2022-04-03 16:26:03 +0800
commitad2a61c2a6f6ff6215b9d43ef42adcb388c41d7d (patch)
treeeaa45bd6e394aaf9bbd3187417cab54ad5815f2c
downloadaur-ad2a61c2a6f6ff6215b9d43ef42adcb388c41d7d.tar.gz
nothingyoucoulddo
-rw-r--r--.SRCINFO11
-rw-r--r--PKGBUILD18
2 files changed, 29 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO
new file mode 100644
index 000000000000..7769964c3c66
--- /dev/null
+++ b/.SRCINFO
@@ -0,0 +1,11 @@
+pkgbase = ttf-nothingyoucoulddo
+ pkgdesc = Nothing You Could Do is based on the handwriting of a photographer friend.
+ pkgver = 1.0
+ pkgrel = 1
+ url = https://fonts.google.com/specimen/Nothing+You+Could+Do#standard-styles
+ arch = any
+ license = OFL
+ source = ttf-nothingyoucoulddo.zip::https://fonts.google.com/download?family=Nothing%20You%20Could%20Do
+ sha256sums = 71b0e9610bfbabba89c192fb7aae5f72fc6fa760a3971ac016282099ea0304e2
+
+pkgname = ttf-nothingyoucoulddo
diff --git a/PKGBUILD b/PKGBUILD
new file mode 100644
index 000000000000..6b9e11d87bd7
--- /dev/null
+++ b/PKGBUILD
@@ -0,0 +1,18 @@
+# Maintainer: Zweisamkite <snitxmhm@gmail.com>
+
+pkgname=ttf-nothingyoucoulddo
+pkgver=1.0
+pkgrel=1
+pkgdesc='Nothing You Could Do is based on the handwriting of a photographer friend.'
+arch=(any)
+url="https://fonts.google.com/specimen/Nothing+You+Could+Do#standard-styles"
+license=(OFL)
+source=("${pkgname}.zip::https://fonts.google.com/download?family=Nothing%20You%20Could%20Do")
+sha256sums=('71b0e9610bfbabba89c192fb7aae5f72fc6fa760a3971ac016282099ea0304e2')
+
+package() {
+ cd ${srcdir}
+ install -dm 755 ${pkgdir}/usr/share/fonts/TTF/
+ install -m644 ${srcdir}/*.ttf ${pkgdir}/usr/share/fonts/TTF/
+ install -D -m644 ${srcdir}/OFL.txt ${pkgdir}/usr/share/licenses/${pkgname}/OFL.txt
+}