mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-05 14:47:15 +08:00
24 lines
738 B
Bash
24 lines
738 B
Bash
# $Id: PKGBUILD 56499 2009-10-22 04:41:08Z andyrtr $
|
|
# Maintainer: Jan de Groot <jgc@archlinux.org>
|
|
|
|
pkgname=libxext
|
|
pkgver=1.1.1
|
|
pkgrel=1
|
|
pkgdesc="X11 miscellaneous extensions library"
|
|
arch=(i686 x86_64)
|
|
url="http://xorg.freedesktop.org/"
|
|
license=('custom')
|
|
depends=('libx11>=1.3' 'xextproto>=7.1.1')
|
|
makedepends=('pkgconfig')
|
|
options=('!libtool')
|
|
source=(${url}/releases/individual/lib/libXext-${pkgver}.tar.bz2)
|
|
md5sums=('c417c0e8df39a067f90a2a2e7133637d')
|
|
|
|
build() {
|
|
cd "${srcdir}/libXext-${pkgver}"
|
|
./configure --prefix=/usr --sysconfdir=/etc --disable-static || return 1
|
|
make || return 1
|
|
make DESTDIR="${pkgdir}" install || return 1
|
|
install -D -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" || return 1
|
|
}
|