diff options
author | H. Rosendahl | 2019-05-04 18:59:13 +0200 |
---|---|---|
committer | H. Rosendahl | 2019-05-04 18:59:13 +0200 |
commit | 15777bd28c33229a45a8e32aacc3952b48199447 (patch) | |
tree | 2b7474d12432ba8130aeee4e3984d4fcb8f01499 | |
parent | 46bc6dc3ba096a3227ce761d81ba778bb370544a (diff) | |
download | aur-15777bd28c33229a45a8e32aacc3952b48199447.tar.gz |
Adapted for changed folder structure of release archive
-rw-r--r-- | .SRCINFO | 4 | ||||
-rw-r--r-- | .gitignore | 7 | ||||
-rw-r--r-- | PKGBUILD | 6 |
3 files changed, 8 insertions, 9 deletions
@@ -2,13 +2,13 @@ pkgbase = otf-jost pkgdesc = An original font created by indestructible type*. It is inspired by the designs of Paul Renner. pkgver = 3.3 pkgrel = 1 - url = http://indestructible-type.github.io/Renner.html + url = http://indestructible-type.github.io/Jost.html arch = any license = custom conflicts = otf-renner replaces = otf-renner source = Jost.zip::https://github.com/indestructible-type/Jost/releases/download/3.3/Jost.zip - sha256sums = 7a274c612c5f02b8de53c7c120a67812847ea6789489d8809feffd238512ad46 + sha256sums = f3156f3206362223b670edaa2547b1424ee9eaadc61a3dbc06dccc46f7a686ef pkgname = otf-jost diff --git a/.gitignore b/.gitignore index ede0871105e9..ee96cb4cb680 100644 --- a/.gitignore +++ b/.gitignore @@ -1,7 +1,6 @@ pkg/ src/ -*.pkg.tar.xz +*.pkg.tar.* *.pkg.tar -*.src.tar.gz -*.src.tar.xz -Renner.zip +*.src.tar.* +Jost.zip @@ -6,15 +6,15 @@ pkgrel=1 replaces=('otf-renner') conflicts=('otf-renner') pkgdesc="An original font created by indestructible type*. It is inspired by the designs of Paul Renner." -url="http://indestructible-type.github.io/Renner.html" +url="http://indestructible-type.github.io/Jost.html" arch=(any) license=(custom) source=("Jost.zip::https://github.com/indestructible-type/Jost/releases/download/${pkgver}/Jost.zip") -sha256sums=('7a274c612c5f02b8de53c7c120a67812847ea6789489d8809feffd238512ad46') +sha256sums=('f3156f3206362223b670edaa2547b1424ee9eaadc61a3dbc06dccc46f7a686ef') package() { - cd "${srcdir}/OpenType/" + cd "${srcdir}/Finished OpenType/" install -d "$pkgdir/usr/share/fonts/jost" install -t "$pkgdir/usr/share/fonts/jost" -m644 *.otf install -Dm644 ../LICENSE.md "$pkgdir/usr/share/licenses/$pkgname/LICENSE" |