summarylogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.SRCINFO5
-rw-r--r--.gitignore5
-rw-r--r--PKGBUILD24
3 files changed, 15 insertions, 19 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 7d9ab8cb33f5..862a47b62dcd 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,13 +1,12 @@
pkgbase = ttf-29lt-zarid-sans
- pkgdesc = A Friendly & Direct Typeface
+ pkgdesc = A friendly & direct typeface.
pkgver = 2.000
- pkgrel = 1
+ pkgrel = 2
epoch = 1
url = https://www.29lt.com/product/29lt-zarid-sans
arch = any
license = custom
makedepends = woff2
- depends = fontconfig
source = https://v-fonts.com/assets/fonts/29LTZaridSansVar.woff2
source = https://v-fonts.com/assets/fonts/29LTZaridSansSlantedVar.woff2
source = LICENSE
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 000000000000..b7820b6e5f30
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,5 @@
+pkg/
+src/
+*.woff2
+
+*.pkg.*
diff --git a/PKGBUILD b/PKGBUILD
index 08a81d0196ac..e4aebc5ae2e1 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,20 +1,13 @@
-# Maintainer: Diab Neiroukh <officiallazerl0rd@gmail.com>
+# Maintainer: Diab Neiroukh <lazerl0rd at thezest dot dev>
pkgname="ttf-29lt-zarid-sans"
-pkgver=2.000
-pkgrel=1
+pkgver="2.000"
+pkgrel=2
epoch=1
-pkgdesc="A Friendly & Direct Typeface"
-arch=(
- "any"
-)
+arch=("any")
+pkgdesc="A friendly & direct typeface."
url="https://www.29lt.com/product/29lt-zarid-sans"
-license=(
- "custom"
-)
-depends=(
- "fontconfig"
-)
+license=("custom")
makedepends=(
"woff2"
)
@@ -31,14 +24,13 @@ b2sums=(
prepare()
{
- woff2_decompress 29LTZaridSansVar.woff2
- woff2_decompress 29LTZaridSansSlantedVar.woff2
+ woff2_decompress "29LTZaridSansVar.woff2"
+ woff2_decompress "29LTZaridSansSlantedVar.woff2"
}
package()
{
install -D -m644 "29LTZaridSansVar.ttf" "$pkgdir/usr/share/fonts/TTF/29LTZaridSansVar.ttf"
install -D -m644 "29LTZaridSansSlantedVar.ttf" "$pkgdir/usr/share/fonts/TTF/29LTZaridSansSlantedVar.ttf"
-
install -D -m644 "LICENSE" "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
}