mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 23:38:28 +08:00
30 lines
929 B
Bash
30 lines
929 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=libxext
|
|
pkgver=1.1.2
|
|
pkgrel=2
|
|
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=('9e51f9cb7e0a38c7099ac1c0de1a1add')
|
|
|
|
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
|
|
}
|