Package Details: otf-shantell-sans 1.011-1

Git Clone URL: https://aur.archlinux.org/shantell-sans-font.git (read-only, click to copy)
Package Base: shantell-sans-font
Description: a marker-style font built for creative expression, typographic play, and animation
Upstream URL: https://shantellsans.com
Licenses: OFL-1.1-no-RFN
Provides: shantell-sans-font
Submitter: alerque
Maintainer: alerque
Last Packager: alerque
Votes: 0
Popularity: 0.000000
First Submitted: 2023-03-09 14:40 (UTC)
Last Updated: 2024-11-01 12:43 (UTC)

Latest Comments

HurricanePootis commented on 2024-09-25 17:55 (UTC)

Here is some changes I recommend for 1.011 1. Use SPDX OFL-1.1 license 2. Install license and about as undercase without space

diff --git a/PKGBUILD b/PKGBUILD
index eff5032..315c7ef 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -3,29 +3,29 @@
 _fname=Shantell-Sans
 pkgbase=${_fname,,}-font
 pkgname=(otf-${_fname,,} ttf-${_fname,,}-variable)
-pkgver=1.009
+pkgver=1.011
 pkgrel=1
 pkgdesc='a marker-style font built for creative expression, typographic play, and animation'
 arch=(any)
 url=https://shantellsans.com
 _url=https://github.com/arrowtype/${_fname,,}
-license=(OFL)
+license=(OFL-1.1)
 _archive="${_fname//-/_}_$pkgver"
 source=("$_url/releases/download/$pkgver/$_archive.zip")
-sha256sums=('5605eacebd04959cb412055ae64032a02376131d4c35302784a1b45b8437d206')
+sha256sums=('7562b90399eae6339f89079c917235823fca1cabda3bab624bbacaefa7abe558')

 package_ttf-shantell-sans-variable() {
     cd "${_archive//_/ }"
     provides=("$pkgbase")
     install -Dm0644 -t "$pkgdir/usr/share/fonts/OTF/" Desktop/${_fname//-/}*.ttf
-    install -Dm0644 -t "$pkgdir/usr/share/licenses/$pkgname/" *License
-    install -Dm0644 -t "$pkgdir/usr/share/doc/$pkgname/" *About
+    install -Dm0644 "2 - License.txt" "$pkgdir/usr/share/licenses/$pkgname/license.txt"
+    install -Dm0644 "1 - About.txt" "$pkgdir/usr/share/doc/$pkgname/about.txt"
 }

 package_otf-shantell-sans() {
     cd "${_archive//_/ }"
     provides=("$pkgbase")
     install -Dm0644 -t "$pkgdir/usr/share/fonts/OTF/" Desktop/Static/${_fname//-/_}-*.otf
-    install -Dm0644 -t "$pkgdir/usr/share/licenses/$pkgname/" *License
-    install -Dm0644 -t "$pkgdir/usr/share/doc/$pkgname/" *About
+    install -Dm0644 "2 - License.txt" "$pkgdir/usr/share/licenses/$pkgname/license.txt"
+    install -Dm0644 "1 - About.txt" "$pkgdir/usr/share/doc/$pkgname/about.txt"
 }