mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-05 19:57:16 +08:00
22 lines
678 B
Bash
22 lines
678 B
Bash
# $Id: PKGBUILD 50992 2009-09-04 12:38:04Z jgc $
|
|
#Maintainer: Jan de Groot <jgc@archlinux.org>
|
|
|
|
pkgname=xf86bigfontproto
|
|
pkgver=1.2.0
|
|
pkgrel=1
|
|
pkgdesc="X11 Big Fonts extension wire protocol"
|
|
arch=(any)
|
|
url="http://xorg.freedesktop.org/"
|
|
license=('custom')
|
|
source=(${url}/releases/individual/proto/${pkgname}-${pkgver}.tar.bz2)
|
|
sha1sums=('312a2ea708b257520c1af4393b69d73a393a478f')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
./configure --prefix=/usr || 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
|
|
}
|