mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-18 22:54:00 +00:00
23 lines
706 B
Bash
23 lines
706 B
Bash
# $Id: PKGBUILD 36503 2009-04-23 23:27:23Z eric $
|
|
#Maintainer: Jan de Groot <jgc@archlinux.org>
|
|
|
|
pkgname=xorg-fonts-encodings
|
|
pkgver=1.0.2
|
|
pkgrel=3
|
|
pkgdesc="X.org font encoding files"
|
|
arch=(arm)
|
|
url="http://xorg.freedesktop.org/"
|
|
license=('custom')
|
|
depends=('xorg-font-utils')
|
|
install=xorg-fonts-encodings.install
|
|
source=(${url}/releases/individual/font/encodings-${pkgver}.tar.bz2)
|
|
md5sums=('11adda157b03d63fd61d95ad7ef00466')
|
|
|
|
build() {
|
|
cd ${srcdir}/encodings-${pkgver}
|
|
./configure --prefix=/usr \
|
|
--with-encodingsdir=/usr/share/fonts/encodings
|
|
make || return 1
|
|
make DESTDIR=${pkgdir} install || return 1
|
|
install -D -m644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
|
|
}
|