mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-04 22:37:15 +08:00
21 lines
585 B
Bash
21 lines
585 B
Bash
# $Id: PKGBUILD 55023 2009-10-11 21:25:04Z andyrtr $
|
|
#Maintainer: Jan de Groot <jgc@archlinux.org>
|
|
|
|
pkgname=recordproto
|
|
pkgver=1.14
|
|
pkgrel=1
|
|
pkgdesc="X11 Record extension wire protocol"
|
|
arch=('any')
|
|
url="http://xorg.freedesktop.org/"
|
|
license=('custom')
|
|
source=(${url}/releases/individual/proto/${pkgname}-${pkgver}.tar.bz2)
|
|
md5sums=('70f5998c673aa510e2acd6d8fb3799de')
|
|
|
|
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
|
|
}
|