mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
19 lines
540 B
Bash
19 lines
540 B
Bash
# Maintainer: Jan de Groot <jgc@archlinux.org>
|
|
|
|
pkgname=xf86bigfontproto
|
|
pkgver=1.1.2
|
|
pkgrel=2
|
|
pkgdesc="X11 Big Fonts extension wire protocol"
|
|
arch=(arm)
|
|
url="http://xorg.freedesktop.org/"
|
|
license=('custom')
|
|
source=(${url}/releases/individual/proto/${pkgname}-${pkgver}.tar.bz2)
|
|
md5sums=('a318c1e86123832d7b0c95fc7d47ef35')
|
|
|
|
build() {
|
|
cd ${srcdir}/${pkgname}-${pkgver}
|
|
./configure --prefix=/usr
|
|
make || return 1
|
|
make DESTDIR=${pkgdir} install || return 1
|
|
install -D -m644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
|
|
}
|