diff options
author | Jonathan Chasteen | 2019-03-25 21:31:24 -0400 |
---|---|---|
committer | Jonathan Chasteen | 2019-03-25 21:31:24 -0400 |
commit | bbc89165bb01435459f87f47a87ce411120461a0 (patch) | |
tree | 34a112dd6b70f79a5221a58c5a45b900dfab3630 | |
download | aur-ttf-alegreya-sans.tar.gz |
Initialize repo, create PKGBUILD
-rw-r--r-- | .SRCINFO | 12 | ||||
-rw-r--r-- | PKGBUILD | 17 |
2 files changed, 29 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO new file mode 100644 index 000000000000..31c6f1d68741 --- /dev/null +++ b/.SRCINFO @@ -0,0 +1,12 @@ +pkgbase = ttf-alegreya-sans + pkgdesc = Humanist sans serif family with a caligraphic feeling. + pkgver = 2.008 + pkgrel = 1 + url = https://www.huertatipografica.com/en/fonts/alegreya-sans-ht + arch = any + license = custom:OFL + source = https://github.com/huertatipografica/Alegreya-Sans/archive/v2.008.tar.gz + sha256sums = ea545572d49e18e675d6b72a6754da344e24b9cacc3d2b76c1eb2bf9ae73a402 + +pkgname = ttf-alegreya-sans + diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 000000000000..b3e2102c1537 --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,17 @@ +# Maintainer: Jonathan Chasteen <jonathan.chasteen@live.com> +pkgname=ttf-alegreya-sans +pkgver=2.008 +pkgrel=1 +pkgdesc='Humanist sans serif family with a caligraphic feeling.' +arch=('any') +url='https://www.huertatipografica.com/en/fonts/alegreya-sans-ht' +license=('custom:OFL') +source=('https://github.com/huertatipografica/Alegreya-Sans/archive/v2.008.tar.gz') +sha256sums=('ea545572d49e18e675d6b72a6754da344e24b9cacc3d2b76c1eb2bf9ae73a402') + +package() { + install -d ${pkgdir}/usr/share/fonts/TTF/ + install -m644 ${srcdir}/Alegreya-Sans-${pkgver}/fonts/ttf/*.ttf ${pkgdir}/usr/share/fonts/TTF/ + install -D -m644 ${srcdir}/Alegreya-Sans-${pkgver}/OFL.txt ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE +} + |