blob: bb0579aec28b6c204e7e21ff79cdf883987e4687 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=libxext
pkgver=1.3.3
pkgrel=2
pkgdesc="X11 miscellaneous extensions library"
url="http://xorg.freedesktop.org/"
arch="all"
license="custom"
depends=
depends_dev="libxau-dev"
makedepends="$depends_dev libx11-dev xproto util-macros xmlto"
subpackages="$pkgname-dev $pkgname-doc"
options="!check"
source="http://www.x.org/releases/individual/lib/libXext-$pkgver.tar.bz2
"
builddir="$srcdir"/libXext-$pkgver
build() {
cd "$builddir"
./configure \
--build=$CBUILD \
--host=$CHOST \
--prefix=/usr \
--sysconfdir=/etc \
--with-xmlto \
--without-fop
make
}
package() {
cd "$builddir"
make DESTDIR="$pkgdir" install
}
md5sums="52df7c4c1f0badd9f82ab124fb32eb97 libXext-1.3.3.tar.bz2"
sha256sums="b518d4d332231f313371fdefac59e3776f4f0823bcb23cf7c7305bfb57b16e35 libXext-1.3.3.tar.bz2"
sha512sums="669d61545d10b999872addbf5628127840a221cbeaafb5ffa4328e0e0e1823583ece973bcafd5f13852ed58d4b0fe313a35f304ac80c6ed2b382cbbca977761a libXext-1.3.3.tar.bz2"
|