blob: 2589f10e6b3935caab1e2be103cc72e6cbec9478 (
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
|
# $Id: PKGBUILD 151743 2012-03-01 23:01:51Z bisson $
# Contributor: Jan de Groot <jgc@archlinux.org>
# Maintainer: Gaetan Bisson <bisson@archlinux.org>
pkgname=xorg-font-util
pkgver=1.3.0
pkgrel=1
pkgdesc='X.Org font utilities'
url='http://xorg.freedesktop.org/'
arch=('i686' 'x86_64')
license=('custom')
makedepends=('xorg-util-macros')
source=("${url}/releases/individual/font/font-util-${pkgver}.tar.bz2")
sha1sums=('a015f4c5a35d98af72835797293697e0eb9cd506')
replaces=('font-util')
provides=('font-util')
conflicts=('font-util')
groups=('xorg-fonts' 'xorg')
build() {
cd "${srcdir}/font-util-${pkgver}"
./configure \
--prefix=/usr \
--mandir=/usr/share/man \
--with-mapdir=/usr/share/fonts/util \
--with-fontrootdir=/usr/share/fonts \
make
}
package() {
cd "${srcdir}/font-util-${pkgver}"
make DESTDIR="${pkgdir}" install
install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/COPYING"
}
|