mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-02-27 02:31:42 +01:00
31 lines
787 B
Plaintext
31 lines
787 B
Plaintext
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
|
|
pkgname=libxdamage
|
|
pkgver=1.1.5
|
|
pkgrel=1
|
|
pkgdesc="X11 damaged region extension library"
|
|
url="http://xorg.freedesktop.org/"
|
|
arch="all"
|
|
license="MIT"
|
|
options="!check" # No test suite.
|
|
makedepends="xorgproto libx11-dev libxfixes-dev util-macros"
|
|
subpackages="$pkgname-dev"
|
|
source="https://www.x.org/releases/individual/lib/libXdamage-$pkgver.tar.bz2"
|
|
|
|
builddir="$srcdir"/libXdamage-$pkgver
|
|
|
|
build() {
|
|
./configure \
|
|
--build=$CBUILD \
|
|
--host=$CHOST \
|
|
--prefix=/usr \
|
|
--sysconfdir=/etc \
|
|
--disable-static
|
|
make
|
|
}
|
|
|
|
package() {
|
|
make DESTDIR="$pkgdir" install
|
|
}
|
|
|
|
sha512sums="a3ca6cc33b1727f717a3e2aa5593f660508a81a47918a0aa949e9e8fba105e303fe5071983b48caac92feea0fe6e8e01620805e4d19b41f21f20d837b191c124 libXdamage-1.1.5.tar.bz2"
|