mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-06 00:57:32 +08:00
22 lines
668 B
Bash
22 lines
668 B
Bash
# $Id: PKGBUILD 51001 2009-09-04 12:57:40Z jgc $
|
|
#Maintainer: Jan de Groot <jgc@archlinux.org>
|
|
|
|
pkgname=videoproto
|
|
pkgver=2.3.0
|
|
pkgrel=1
|
|
pkgdesc="X11 Video extension wire protocol"
|
|
arch=(any)
|
|
url="http://xorg.freedesktop.org/"
|
|
license=('custom')
|
|
source=(${url}/releases/individual/proto/${pkgname}-${pkgver}.tar.bz2)
|
|
sha1sums=('4aef2b438d45b3ab75e640996ce1267d3468f48c')
|
|
|
|
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
|
|
}
|