summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorAbsobel2023-08-10 16:50:54 +0900
committerAbsobel2023-08-10 16:50:54 +0900
commit26c7ac6725eb2e2c72457aedc04a591b392c0a9b (patch)
treea412a4ea80bb22c010060bb758ccba19b9fa1689
downloadaur-26c7ac6725eb2e2c72457aedc04a591b392c0a9b.tar.gz
init
-rw-r--r--.SRCINFO11
-rw-r--r--PKGBUILD20
2 files changed, 31 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO
new file mode 100644
index 000000000000..ff17ed288092
--- /dev/null
+++ b/.SRCINFO
@@ -0,0 +1,11 @@
+pkgbase = otf-evolve-sans
+ pkgdesc = MADE Evolve is modern futuristic sans serif fontfamily. This combination of futuristic and geometric to create a modern design.
+ pkgver = 0.1
+ pkgrel = 1
+ url = https://www.dafont.com/made-evolve-sans.font
+ arch = any
+ license = Custom
+ source = https://dl.dafont.com/dl/?f=made_evolve_sans
+ sha256sums = SKIP
+
+pkgname = otf-evolve-sans
diff --git a/PKGBUILD b/PKGBUILD
new file mode 100644
index 000000000000..c7fc3a2c38fd
--- /dev/null
+++ b/PKGBUILD
@@ -0,0 +1,20 @@
+# Maintainer: Absobel <imkonnu@gmail.com>
+pkgname=otf-made-evolve-sans
+pkgver=0.1
+pkgrel=1
+pkgdesc="MADE Evolve is modern futuristic sans serif fontfamily. This combination of futuristic and geometric to create a modern design."
+arch=("any")
+url="https://www.dafont.com/made-evolve-sans.font"
+license=("Custom")
+source=("https://dl.dafont.com/dl/?f=made_evolve_sans")
+
+sha256sums=('SKIP')
+
+package() {
+ cd "${srcdir}"
+
+ install -d "${pkgdir}/usr/share/fonts/OTF/"
+ install -m644 ./*.otf "${pkgdir}/usr/share/fonts/OTF/"
+
+ install -D -m644 "License READ ME FIRST.txt" ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+}