core/xorg-font-util/PKGBUILD
2014-06-29 19:21:58 +02:00

33 lines
760 B
Bash

# Part of the X.org group
# Maintainer: AlmAck <almack@chakraos.org>
pkgname=xorg-font-util
pkgver=1.3.0
pkgrel=1
pkgdesc='X.Org font utilities'
url='http://xorg.freedesktop.org/'
arch=('x86_64')
license=('custom')
makedepends=('xorg-util-macros')
source=("${url}/releases/individual/font/font-util-${pkgver}.tar.bz2")
sha1sums=('a015f4c5a35d98af72835797293697e0eb9cd506')
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"
}