mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-05 13:47:15 +08:00
31 lines
811 B
Bash
31 lines
811 B
Bash
#
|
|
# Platform Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# Maintainer: Neophytos Kolokotronis <tetris4@gmail.com>
|
|
|
|
pkgname=libxext
|
|
pkgver=1.3.1
|
|
pkgrel=1
|
|
pkgdesc="X11 miscellaneous extensions library"
|
|
arch=(i686 x86_64)
|
|
url=('http://xorg.freedesktop.org/')
|
|
license=('custom')
|
|
depends=('libx11' 'xextproto')
|
|
makedepends=('pkg-config')
|
|
options=('!libtool')
|
|
source=(${url}/releases/individual/lib/libXext-${pkgver}.tar.bz2)
|
|
sha1sums=('764ac472ae19a0faade193717a9e0938d3430aaa')
|
|
|
|
build() {
|
|
cd "${srcdir}/libXext-${pkgver}"
|
|
./configure --prefix=/usr --sysconfdir=/etc --disable-static
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}/libXext-${pkgver}"
|
|
make DESTDIR="${pkgdir}" install
|
|
|
|
install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
|
|
install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"
|
|
} |