PKGBUILDs/extra/ttf-cheapskate/PKGBUILD
2009-10-09 21:23:22 -05:00

23 lines
689 B
Bash

# $Id: PKGBUILD 37851 2009-05-04 00:45:18Z eric $
# Maintainer : Damir Perisa <damir.perisa@bluewin.ch>
pkgname=ttf-cheapskate
pkgver=2.0
pkgrel=6
pkgdesc="TTFonts collection from dustimo.com"
arch=(i686 x86_64)
url="http://dustismo.com/"
license=('GPL')
depends=(xorg-fonts-encodings xorg-fonts-alias xorg-font-utils fontconfig)
makedepends=(unzip)
install=ttf.install
source=(ftp://ftp.archlinux.org/other/ttf-cheapskate/ttf-dustin_20030517.orig.tar.gz)
md5sums=('cb130e89d7cf0723550ccb432de3d0ef')
build() {
cd $srcdir/ttf-dustin-20030517
for file in *.zip; do
unzip -o $file
done
install -d $pkgdir/usr/share/fonts/TTF
install -m644 *.ttf $pkgdir/usr/share/fonts/TTF/
}