diff options
author | psykose <alice@ayaya.dev> | 2023-04-06 05:25:42 +0000 |
---|---|---|
committer | psykose <alice@ayaya.dev> | 2023-04-06 07:25:42 +0200 |
commit | 33b3295d888f33bf50be79a4507aeb50db324483 (patch) | |
tree | db14fd5d1e6aa5f67f3c94a42e417a269c7d880e | |
parent | f5806079ae37cf12bc8de256377273b315194c5c (diff) |
community/font-adobe-source-code-pro: upgrade to 2.040
-rw-r--r-- | community/font-adobe-source-code-pro/APKBUILD | 16 |
1 files changed, 7 insertions, 9 deletions
diff --git a/community/font-adobe-source-code-pro/APKBUILD b/community/font-adobe-source-code-pro/APKBUILD index c4ce7ccd03a..16e00a330a5 100644 --- a/community/font-adobe-source-code-pro/APKBUILD +++ b/community/font-adobe-source-code-pro/APKBUILD @@ -1,9 +1,8 @@ # Contributor: Rasmus Thomsen <oss@cogitri.dev> # Maintainer: Rasmus Thomsen <oss@cogitri.dev> pkgname=font-adobe-source-code-pro -pkgver=2.038 -_italic_ver=1.058 -_var_ver=1.018 +pkgver=2.040 +# hardcoded below, update manually pkgrel=0 pkgdesc="Monospaced font family for user interface and coding environments" url="https://adobe-fonts.github.io/source-code-pro/" @@ -11,16 +10,15 @@ arch="noarch" license="OFL-1.1" depends="font-util" options="!check" -source="https://github.com/adobe-fonts/source-code-pro/archive/refs/tags/${pkgver}R-ro/${_italic_ver}R-it/${_var_ver}R-VAR.tar.gz" -builddir="$srcdir/source-code-pro-${pkgver}R-ro-${_italic_ver}R-it-${_var_ver}R-VAR" +source="https://github.com/adobe-fonts/source-code-pro/archive/refs/tags/2.040R-u/1.060R-i/1.024R-vf.tar.gz" +builddir="$srcdir" package() { - for x in "$builddir"/OTF/*.otf; do - install -d "$pkgdir/usr/share/fonts/OTF/" - install -m644 "$x" "$pkgdir/usr/share/fonts/OTF" + for x in "$builddir"/source-*/OTF/*.otf; do + install -Dm644 "$x" -t "$pkgdir"/usr/share/fonts/OTF done } sha512sums=" -96981af2a470027a372ab8a02265d34a6b2a810c4cca0b498b01e613019a04c9760d95e21fb740af2c7fff076098bb36f5c282bf9b8f1875eed72ed70e4b3ac9 1.018R-VAR.tar.gz +c5a23595993faf6b1d5d7151bed6391f959d040ecae042e0eca9196d5da2d364dbd6a162cb81e777b92c928ed6b2f904a5a3e4fd944dad826a21223475166fc4 1.024R-vf.tar.gz " |