mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
22 lines
716 B
Bash
22 lines
716 B
Bash
# Maintainer: Manuel Rotter <rotter.manuel@gmail.com>
|
|
|
|
pkgname=ttf-dejavu
|
|
pkgver=2.29
|
|
pkgrel=1
|
|
pkgdesc="Font family based on the Bitstream Vera Fonts with a wider range of characters"
|
|
arch=('arm')
|
|
url="http://dejavu.sourceforge.net/"
|
|
license=('custom')
|
|
depends=('fontconfig' 'xorg-fonts-encodings')
|
|
install=ttf-dejavu.install
|
|
source=(http://downloads.sourceforge.net/dejavu/dejavu-fonts-ttf-$pkgver.tar.bz2)
|
|
md5sums=('d8feb7d57d8b7cbac409df435daa9849')
|
|
|
|
build() {
|
|
cd "$srcdir/dejavu-fonts-ttf-$pkgver"
|
|
|
|
mkdir -p "$pkgdir/usr/share/fonts/TTF" || return 1
|
|
install -m644 ttf/*.ttf "$pkgdir/usr/share/fonts/TTF" || return 1
|
|
|
|
install -D -m644 LICENSE "$pkgdir/usr/share/licenses/ttf-dejavu/LICENSE" || return 1
|
|
}
|