mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
21 lines
645 B
Bash
21 lines
645 B
Bash
# $Id: PKGBUILD 36359 2009-04-21 06:03:20Z eric $
|
|
#Maintainer: Jan de Groot <jgc@archlinux.org>
|
|
|
|
pkgname=xcmiscproto
|
|
pkgver=1.1.2
|
|
pkgrel=2
|
|
pkgdesc="X11 XC-Miscellaneous extension wire protocol"
|
|
arch=(arm)
|
|
url="http://xorg.freedesktop.org/"
|
|
license=('custom')
|
|
source=(${url}/releases/individual/proto/${pkgname}-${pkgver}.tar.bz2)
|
|
md5sums=('fde0b050901f024b19159cdacdcfbd20')
|
|
sha1sums=('825ec15986cd1ab008b11f6379eb4c7f3c78bd76')
|
|
|
|
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
|
|
}
|