diff options
author | Rasmus Thomsen <oss@cogitri.dev> | 2019-05-01 14:57:44 +0200 |
---|---|---|
committer | TBK <tbk@jjtc.eu> | 2019-05-25 18:06:33 +0200 |
commit | 974ddf1e0650721b861dd3b3db16de8ec329a27d (patch) | |
tree | e5a9442a509f613f19cfe1e600a7465152b7c36d /testing/font-adobe-source-code-pro | |
parent | be79083ab789f674ab31854c8573c25e367222db (diff) | |
download | aports-974ddf1e0650721b861dd3b3db16de8ec329a27d.tar.bz2 aports-974ddf1e0650721b861dd3b3db16de8ec329a27d.tar.xz |
testing/font-adobe-source-code-pro: new aport
It's the default GNOME monospace font
Closes: GH-7379
Diffstat (limited to 'testing/font-adobe-source-code-pro')
-rw-r--r-- | testing/font-adobe-source-code-pro/APKBUILD | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/testing/font-adobe-source-code-pro/APKBUILD b/testing/font-adobe-source-code-pro/APKBUILD new file mode 100644 index 0000000000..3ee007b45f --- /dev/null +++ b/testing/font-adobe-source-code-pro/APKBUILD @@ -0,0 +1,23 @@ +# Contributor: Rasmus Thomsen <oss@cogitri.dev> +# Maintainer: Rasmus Thomsen <oss@cogitri.dev> +pkgname=font-adobe-source-code-pro +pkgver=2.030 +_italic_ver=1.050 +pkgrel=0 +pkgdesc="Monospaced font family for user interface and coding environments" +url="https://adobe-fonts.github.io/source-code-pro/" +arch="noarch" +license="OFL-1.1" +depends="font-util" +options="!check" +source="https://github.com/adobe-fonts/source-code-pro/archive/${pkgver}R-ro/${_italic_ver}R-it.tar.gz" +builddir="$srcdir/source-code-pro-${pkgver}R-ro-${_italic_ver}R-it" + +package() { + for x in "$builddir"/OTF/*.otf; do + install -d "$pkgdir/usr/share/fonts/OTF/" + install -m644 "$x" "$pkgdir/usr/share/fonts/OTF" + done +} + +sha512sums="e4ff04ac926e07f4cfa824d3ff4c6c9475c5e0a4172ed055aac8c80378f79c0c5838214377a7ea3bc2bb3997804f5a1420abaae7bf13c6e4a4ffe6f82d01a2e3 1.050R-it.tar.gz" |