15 lines
445 B
Plaintext
15 lines
445 B
Plaintext
# Description: The free Ubuntu Mono Nerd font family.
|
|
# URL: https://www.nerdfonts.com/
|
|
# Maintainer: Alexander Zhirov
|
|
# Depends on: xorg-mkfontdir, xorg-mkfontscale, xorg-bdftopcf, xorg-font-util
|
|
|
|
name=UbuntuMono
|
|
version=3.1.1
|
|
release=1
|
|
source=(https://github.com/ryanoasis/nerd-fonts/releases/download/v$version/$name.tar.xz)
|
|
|
|
build() {
|
|
mkdir -p $PKG/usr/share/fonts/X11/TTF
|
|
mv UbuntuMonoNerdFont*.ttf $PKG/usr/share/fonts/X11/TTF/.
|
|
}
|