summaryrefslogtreecommitdiff
path: root/libre/xorg-fonts-type1/PKGBUILD
blob: 26b436489ad46e8e8087a2137e68c3a4b4bbfbc9 (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
# $Id: PKGBUILD 286572 2017-01-15 16:43:01Z andyrtr $
# Maintainer (Arch): Jan de Groot <jgc@archlinux.org>

pkgname=xorg-fonts-type1
pkgver=7.7
pkgrel=2.parabola1
pkgdesc="X.org Type1 fonts, without nonfree fonts"
arch=(any)
license=('custom')
url="https://xorg.freedesktop.org/"
depends=(xorg-fonts-encodings xorg-fonts-alias xorg-font-utils fontconfig)
conflicts=('xorg-fonts-type1-libre')
replaces=('xorg-fonts-type1-libre')
source=(${url}/releases/individual/font/font-bitstream-type1-1.0.3.tar.bz2
        ${url}/releases/individual/font/font-xfree86-type1-1.0.4.tar.bz2)
md5sums=('5e0c9895d69d2632e2170114f8283c11'
         '3eeb3fb44690b477d510bbd8f86cf5aa')

build() {
  cd "${srcdir}"
  for dir in *; do
    if [ -d "${dir}" ]; then
      pushd "${dir}"
      ./configure --prefix=/usr \
        --with-fontdir=/usr/share/fonts/Type1
      make
      popd
    fi
  done
}

package() {
  cd "${srcdir}"
  install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
  for dir in *; do
    if [ -d "${dir}" ]; then
      pushd "${dir}"
      make DESTDIR="${pkgdir}" install
      install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE.${dir%-*}"
      popd
    fi
  done
  rm -f "${pkgdir}"/usr/share/fonts/Type1/fonts.*
}