mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
20 lines
648 B
Bash
20 lines
648 B
Bash
|
# $Id: PKGBUILD 34148 2009-04-06 20:59:40Z eric $
|
||
|
# Maintainer: dorphell <dorphell@archlinux.org>
|
||
|
pkgname=gsfonts
|
||
|
pkgver=8.11
|
||
|
pkgrel=5
|
||
|
pkgdesc="Ghostscript standard Type1 fonts"
|
||
|
arch=(i686 x86_64)
|
||
|
url="http://sourceforge.net/projects/ghostscript"
|
||
|
license=('GPL2')
|
||
|
depends=('xorg-font-utils' 'fontconfig')
|
||
|
install=xfonts.install
|
||
|
source=(http://downloads.sourceforge.net/ghostscript/ghostscript-fonts-std-8.11.tar.gz)
|
||
|
md5sums=('6865682b095f8c4500c54b285ff05ef6')
|
||
|
|
||
|
build() {
|
||
|
install -d ${startdir}/pkg/usr/share/fonts/Type1
|
||
|
install -m644 ${startdir}/src/fonts/*.{pfb,pfm,afm} \
|
||
|
${startdir}/pkg/usr/share/fonts/Type1/ || return 1
|
||
|
}
|