mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 17:47:13 +08:00
29 lines
750 B
Bash
29 lines
750 B
Bash
# Part of the X.org group
|
|
# Maintainer: Neophytos Kolokotronis <tetris4 AT gmail DOT com>
|
|
|
|
pkgname=libxrender
|
|
pkgver=0.9.8
|
|
pkgrel=1
|
|
pkgdesc="X Rendering Extension client library"
|
|
arch=(x86_64)
|
|
url="http://xorg.freedesktop.org/"
|
|
license=('custom')
|
|
depends=('libx11' 'renderproto')
|
|
makedepends=('pkgconfig')
|
|
options=('!libtool')
|
|
source=(${url}/releases/individual/lib/libXrender-${pkgver}.tar.bz2)
|
|
md5sums=('2bd9a15fcf64d216e63b8d129e4f1f1c')
|
|
|
|
build() {
|
|
cd ${srcdir}/libXrender-${pkgver}
|
|
./configure --prefix=/usr --disable-static \
|
|
--build=${CHOST} --host=${CHOST}
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd ${srcdir}/libXrender-${pkgver}
|
|
make DESTDIR=${pkgdir} install
|
|
install -D -m644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
|
|
}
|