Package Details: lexend-fonts-git 1:r114.7894f02-2

Git Clone URL: https://aur.archlinux.org/lexend-fonts-git.git (read-only, click to copy)
Package Base: lexend-fonts-git
Description: Lexend is a variable typeface designed to improve reading fluency
Upstream URL: https://lexend.com
Licenses: custom:OFL-1.1
Conflicts: lexend-fonts
Provides: lexend-fonts
Submitter: Phantasm
Maintainer: WSDMatty
Last Packager: haawda
Votes: 7
Popularity: 0.170981
First Submitted: 2019-10-25 19:51 (UTC)
Last Updated: 2023-04-12 17:44 (UTC)

Dependencies (1)

Required by (0)

Sources (1)

Latest Comments

Qvyldr commented on 2023-04-12 10:37 (UTC)

Can you include the 'normal' Lexend font as well? [1,2]

I'm also curious, is there any particular reason to only package the regular variants?

[1] https://fonts.google.com/specimen/Lexend [2] https://github.com/googlefonts/lexend/tree/main/fonts/lexend

haawda commented on 2021-09-01 17:43 (UTC)

The repo is definitely available. Checkyour pamac-configuration (or better, do not use pamac).

medmedin commented on 2021-09-01 17:30 (UTC) (edited on 2021-09-01 17:34 (UTC) by medmedin)

@haawda The upgrade from 1.1.r59.db81838-1 to 1:r92.2049188-1 gives me the following error :

Building lexend-fonts-git...
==> Making package: lexend-fonts-git 1:r92.2049188-1 (Wed 01 Sep 2021 06:13:15 PM +01)
==> Checking runtime dependencies...
==> Checking buildtime dependencies...
==> Retrieving sources...
  -> Cloning lexend-fonts-git git repo...
Cloning into bare repository '/var/tmp/pamac-build-mohamed/lexend-fonts-git/lexend-fonts-git'...
error: RPC failed; curl 56 OpenSSL SSL_read: Connection timed out, errno 110
error: 7189 bytes of body are still expected
fetch-pack: unexpected disconnect while reading sideband packet
fatal: early EOF
fatal: fetch-pack: invalid index-pack output
==> ERROR: Failure while downloading lexend-fonts-git git repo
    Aborting...
Failed to build lexend-fonts-git

NB: I repeated the process for whole week but it always fails.

haawda commented on 2021-09-01 14:10 (UTC)

@medmedin what does this mean? I can install it.

medmedin commented on 2021-09-01 08:53 (UTC)

@haawda it seems the package can no longer be installed.

Quoorex commented on 2021-08-21 11:45 (UTC) (edited on 2021-08-21 11:47 (UTC) by Quoorex)

The PKGBUILD needs to be updated because the fonts are now only available in the following repository: https://github.com/googlefonts/lexend Also, the folder structure of the repository has changed. Here is my modified version of the PKGBUILD to reflect these changes:

# Contributor: Ondřej Šponar
# Maintainer: Stefan Husmann <stefan-husmann@t-online.de>

pkgname=lexend-fonts-git
pkgver=92.r2049188.
pkgrel=1
pkgdesc='Lexend is a variable typeface designed to improve reading fluency'
url="https://lexend.com"
arch=(any)
license=(custom:OFL-1.1)
makedepends=('git')
conflicts=('lexend-fonts')
provides=('lexend-fonts')
source=('lexend-fonts-git::git+https://github.com/googlefonts/lexend')
sha256sums=('SKIP')

pkgver() {
  cd $pkgname
  printf "%s.r%s.%s" $(grep Version README.md |tail -1|cut -d" " -f7) $(git rev-list --count HEAD) $(git rev-parse --short HEAD)
}

package() {
  install -Dm644 $pkgname/fonts/deca/ttf/LexendDeca-Regular.ttf "$pkgdir/usr/share/fonts/TTF/LexendDeca-Regular.ttf"
  install -Dm644 $pkgname/fonts/exa/ttf/LexendExa-Regular.ttf "$pkgdir/usr/share/fonts/TTF/LexendExa-Regular.ttf"
  install -Dm644 $pkgname/fonts/giga/ttf/LexendGiga-Regular.ttf "$pkgdir/usr/share/fonts/TTF/LexendGiga-Regular.ttf"
  install -Dm644 $pkgname/fonts/mega/ttf/LexendMega-Regular.ttf "$pkgdir/usr/share/fonts/TTF/LexendMega-Regular.ttf"
  install -Dm644 $pkgname/fonts/peta/ttf/LexendPeta-Regular.ttf "$pkgdir/usr/share/fonts/TTF/LexendPeta-Regular.ttf"
  install -Dm644 $pkgname/fonts//tera/ttf/LexendTera-Regular.ttf "$pkgdir/usr/share/fonts/TTF/LexendTera-Regular.ttf"
  install -Dm644 $pkgname/fonts/zetta/ttf/LexendZetta-Regular.ttf "$pkgdir/usr/share/fonts/TTF/LexendZetta-Regular.ttf"
  install -Dm644 $pkgname/OFL.txt "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
}