PKGBUILDs/community/ttf-freefont/PKGBUILD
2009-10-09 21:15:33 -05:00

24 lines
747 B
Bash

# $Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $
# Maintainer: Andrea Scarpino <andrea@archlinux.org>
# Contributor: Roman Kyrylych <Roman.Kyrylych@gmail.com>
# Contributor: Francois Charette <firmicus@gmx.net>
pkgname=ttf-freefont
pkgver=20090104
pkgrel=1
pkgdesc="A set of free high-quality TrueType fonts covering the UCS character set"
arch=('i686' 'x86_64')
url="http://www.nongnu.org/freefont/"
license=('GPL')
depends=('fontconfig' 'xorg-font-utils')
install=ttf.install
source=(http://ftp.gnu.org/gnu/freefont/freefont-ttf-$pkgver.tar.gz)
md5sums=('1128bb17763cde6990eacd5996f7def7')
build() {
cd "$srcdir/freefont-$pkgver"
install -d "$pkgdir/usr/share/fonts/TTF"
install -m644 *.ttf "$pkgdir/usr/share/fonts/TTF/" || return 1
}