blob: 52954d740a59aa988d476294d456dbafac2cf59d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
# $Id: PKGBUILD 71681 2010-03-08 12:06:26Z jgc $
# Maintainer: Alexander Baldeck <alexander@archlinux.org>
# Contributor: Jan de Groot <jgc@archlinux.org>
pkgname=xorg-fonts-75dpi
pkgver=1.0.1
pkgrel=4
pkgdesc="X.org 75dpi fonts"
arch=(any)
url="http://xorg.freedesktop.org/"
license=('custom')
depends=(xorg-fonts-encodings xorg-fonts-alias xorg-font-utils fontconfig)
groups=('xorg')
install=xfonts.install
source=(${url}/releases/individual/font/font-adobe-75dpi-1.0.1.tar.bz2
${url}/releases/individual/font/font-adobe-utopia-75dpi-1.0.2.tar.bz2
${url}/releases/individual/font/font-bh-75dpi-1.0.1.tar.bz2
${url}/releases/individual/font/font-bh-lucidatypewriter-75dpi-1.0.1.tar.bz2
${url}/releases/individual/font/font-bitstream-75dpi-1.0.1.tar.bz2)
md5sums=('a47681c97bd012196691c95e34d400f1'
'71dffebeeb702d10876555c361fb69cf'
'53785d2688392aec5cba79fc0ddb23a2'
'6397062f2b346ce5bbe5472f3353a9a9'
'aed54fb53d2d24aff10c92985286d1e5')
build() {
cd "${srcdir}"
install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
for dir in *; do
if [ -d "${dir}" ]; then
pushd "${dir}"
./configure --prefix=/usr \
--with-fontdir=/usr/share/fonts/75dpi || return 1
make || return 1
make DESTDIR="${pkgdir}" install || return 1
install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE.${dir%-75dpi-*}" || return 1
popd
fi
done
rm -f "${pkgdir}"/usr/share/fonts/75dpi/fonts.*
}
|