blob: aae5499d1e5697f8046c1d9001ef0c0315742c7f (
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
42
43
44
45
46
47
48
49
50
|
# $Id: PKGBUILD 150386 2012-02-17 11:05:50Z allan $
# Maintainer: Alexander Baldeck <alexander@archlinux.org>
# Contributor: Jan de Groot <jgc@archlinux.org>
pkgname=xorg-fonts-100dpi
pkgver=1.0.1
pkgrel=4
pkgdesc="X.org 100dpi 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-100dpi-1.0.1.tar.bz2
${url}/releases/individual/font/font-adobe-utopia-100dpi-1.0.2.tar.bz2
${url}/releases/individual/font/font-bh-100dpi-1.0.1.tar.bz2
${url}/releases/individual/font/font-bh-lucidatypewriter-100dpi-1.0.1.tar.bz2
${url}/releases/individual/font/font-bitstream-100dpi-1.0.1.tar.bz2)
md5sums=('c754c3f4a5e08442bf6972b9466625ed'
'1c3a2c26bd3f6e406fbadc7380efa369'
'8af580b87e17ddacdf0ce3d775248387'
'a2b3951dbc6ddb2e4c7e09519dd13333'
'3b8748f8029c53595e4a4a1b23fa790a')
build() {
cd "${srcdir}"
for dir in font-*-100dpi*; do
if [ -d "${dir}" ]; then
pushd ${dir}
./configure --prefix=/usr \
--with-fontdir=/usr/share/fonts/100dpi
make
popd
fi
done
}
package() {
cd "${srcdir}"
install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
for dir in font-*-100dpi*; do
if [ -d "${dir}" ]; then
pushd ${dir}
make DESTDIR="${pkgdir}" install
install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE.${dir%-100dpi-*}"
popd
fi
done
rm -f "${pkgdir}"/usr/share/fonts/100dpi/fonts.*
}
|