mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-05 08:57:14 +08:00
29 lines
827 B
Bash
29 lines
827 B
Bash
#
|
|
# Platform Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# maintainer (i686): Phil Miller <philm[at]chakra-project[dog]org>
|
|
# maintainer (x86_64): Manuel Tortosa <manutortosa[at]chakra-project[dot]org>
|
|
|
|
# include global config
|
|
source ../_buildscripts/${current_repo}-${_arch}-cfg.conf
|
|
|
|
pkgname=compositeproto
|
|
pkgver=0.4.2
|
|
pkgrel=1
|
|
pkgdesc="X11 Composite extension wire protocol"
|
|
arch=('any')
|
|
url="http://xorg.freedesktop.org/"
|
|
license=('custom')
|
|
depends=(fixesproto)
|
|
source=(${url}/releases/individual/proto/${pkgname}-${pkgver}.tar.bz2)
|
|
sha1sums=('aa7b5abcfd5bbfad7cb681ce89dc1d6e381e3044')
|
|
|
|
build() {
|
|
cd ${srcdir}/${pkgname}-${pkgver}
|
|
./configure --prefix=/usr || return 1
|
|
make || return 1
|
|
make DESTDIR=${pkgdir} install || return 1
|
|
install -D -m644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
|
|
}
|
|
|