mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
20 lines
769 B
Bash
20 lines
769 B
Bash
# Maintainer: pressh <pressh at gmail dot com>
|
|
# Contributor: pressh <pressh at gmail dot com>
|
|
|
|
pkgname=ttf-inconsolata
|
|
pkgver=20090215
|
|
pkgrel=1
|
|
pkgdesc="Monospace font for pretty code listings and for the terminal"
|
|
url="http://levien.com/type/myfonts/inconsolata.html"
|
|
license=('custom:OFL')
|
|
depends=('fontconfig' 'xorg-font-utils')
|
|
source=('http://levien.com/type/myfonts/Inconsolata.otf' 'OFL.txt')
|
|
install=ttf-inconsolata.install
|
|
arch=('i686' 'x86_64')
|
|
md5sums=('0fbe014c1f0fb5e3c71140ff0dc63edf'
|
|
'6ed93967ff0dc6dd9c8d31c17f817a06')
|
|
|
|
build() {
|
|
install -Dm644 $startdir/src/Inconsolata.otf ${startdir}/pkg/usr/share/fonts/TTF/ttf-inconsolata.otf
|
|
install -Dm644 $startdir/src/OFL.txt $startdir/pkg/usr/share/licenses/ttf-inconsolata/OFL.txt
|
|
}
|