mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-05 17:37:36 +08:00
25 lines
778 B
Bash
25 lines
778 B
Bash
|
# $Id: PKGBUILD 57486 2009-10-31 18:28:17Z jgc $
|
||
|
#Maintainer: Jan de Groot <jgc@archlinux.org>
|
||
|
|
||
|
pkgname=xorg-fonts-encodings
|
||
|
pkgver=1.0.3
|
||
|
pkgrel=1
|
||
|
pkgdesc="X.org font encoding files"
|
||
|
arch=(any)
|
||
|
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=('29637480e7ce12546668631067c19ced')
|
||
|
|
||
|
build() {
|
||
|
cd "${srcdir}/encodings-${pkgver}"
|
||
|
./configure --prefix=/usr \
|
||
|
--with-encodingsdir=/usr/share/fonts/encodings || return 1
|
||
|
make || return 1
|
||
|
make DESTDIR="${pkgdir}" install || return 1
|
||
|
install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
|
||
|
install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/" || return 1
|
||
|
}
|