mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-10 15:14:36 +08:00
25 lines
846 B
Bash
25 lines
846 B
Bash
# $Id: PKGBUILD 55081 2009-10-11 22:00:08Z andyrtr $
|
|
# Maintainer: Jan de Groot <jgc@archlinux.org>
|
|
|
|
pkgname=libxfont
|
|
pkgver=1.4.1
|
|
pkgrel=1
|
|
pkgdesc="X11 font rasterisation library"
|
|
arch=(i686 x86_64)
|
|
url="http://xorg.freedesktop.org/"
|
|
license=('custom')
|
|
depends=('libfontenc>=1.0.5' 'freetype2>=2.3.9' 'fontsproto>=2.1.0')
|
|
makedepends=('pkgconfig' 'xtrans' 'fontcacheproto' 'xproto')
|
|
options=('!libtool')
|
|
source=(${url}/archive/individual/lib/libXfont-${pkgver}.tar.bz2)
|
|
md5sums=('4f2bed2a2be82e90a51a24bb3a22cdf0')
|
|
|
|
build() {
|
|
cd "${srcdir}/libXfont-${pkgver}"
|
|
./configure --prefix=/usr --sysconfdir=/etc --disable-static || 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
|
|
}
|