mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-05-13 05:44:34 +02:00
33 lines
942 B
Text
33 lines
942 B
Text
# Contributor: Leo <thinkabit.ukim@gmail.com>
|
|
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
|
|
pkgname=libxcomposite
|
|
pkgver=0.4.6
|
|
pkgrel=5
|
|
pkgdesc="X11 Composite extension library"
|
|
url="https://xorg.freedesktop.org/"
|
|
arch="all"
|
|
license="MIT"
|
|
options="!check" # No test suite.
|
|
subpackages="$pkgname-dev $pkgname-doc"
|
|
depends_dev="libxext-dev"
|
|
makedepends="xorgproto libx11-dev libxext-dev libxfixes-dev util-macros"
|
|
source="https://www.x.org/releases/individual/lib/libXcomposite-$pkgver.tar.xz"
|
|
builddir="$srcdir"/libXcomposite-$pkgver
|
|
|
|
build() {
|
|
./configure \
|
|
--build=$CBUILD \
|
|
--host=$CHOST \
|
|
--prefix=/usr \
|
|
--sysconfdir=/etc
|
|
make
|
|
}
|
|
|
|
package() {
|
|
make DESTDIR="$pkgdir" install
|
|
install -D -m644 COPYING "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
|
|
}
|
|
|
|
sha512sums="
|
|
f35a0da8f9f22fd788eee01209557fe3a1b1abdc9744f76330ba42b21b6e3af5464ca4451c33415856417c30da5aa5624e3707980c644327249bfeda5a62a59b libXcomposite-0.4.6.tar.xz
|
|
"
|