mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
22 lines
660 B
Bash
22 lines
660 B
Bash
|
# $Id: PKGBUILD 37570 2009-05-03 02:48:17Z eric $
|
||
|
#Maintainer: Jan de Groot <jgc@archlinux.org>
|
||
|
|
||
|
pkgname=trapproto
|
||
|
pkgver=3.4.3
|
||
|
pkgrel=2
|
||
|
pkgdesc="X11 Trap extension wire protocol"
|
||
|
arch=(i686 x86_64)
|
||
|
url="http://xorg.freedesktop.org/"
|
||
|
license=('custom')
|
||
|
source=(http://xorg.freedesktop.org/releases/individual/proto/${pkgname}-${pkgver}.tar.bz2)
|
||
|
md5sums=('3b713239e5e6b269b31cb665563358df')
|
||
|
sha1sums=('b108aa39a7bfde530d5cd347fda7c58770d5b8da')
|
||
|
|
||
|
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
|
||
|
}
|