mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-04-19 05:36:38 +02:00
35 lines
950 B
Text
35 lines
950 B
Text
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
|
|
pkgname=libxrandr
|
|
pkgver=1.5.4
|
|
pkgrel=1
|
|
pkgdesc="X11 RandR extension library"
|
|
url="https://xorg.freedesktop.org/"
|
|
arch="all"
|
|
license="MIT"
|
|
subpackages="$pkgname-dev $pkgname-doc"
|
|
options="!check" # No test suite.
|
|
depends_dev="libxext-dev"
|
|
makedepends="xorgproto $depends_dev libx11-dev libxrender-dev util-macros"
|
|
source="https://www.x.org/releases/individual/lib/libXrandr-$pkgver.tar.xz"
|
|
builddir="$srcdir"/libXrandr-$pkgver
|
|
|
|
build() {
|
|
./configure \
|
|
--build=$CBUILD \
|
|
--host=$CHOST \
|
|
--prefix=/usr \
|
|
--sysconfdir=/etc \
|
|
--mandir=/usr/share/man \
|
|
--localstatedir=/var \
|
|
--disable-static
|
|
make
|
|
}
|
|
|
|
package() {
|
|
make DESTDIR="$pkgdir" install
|
|
install -Dm644 COPYING "$pkgdir"/usr/share/licenses/$pkgname/COPYING
|
|
}
|
|
|
|
sha512sums="
|
|
f7c0b083943e11b4cc3c97e10e2cbbc3920fe0c9c5031ef86fca2eb5df413d767caf53dca266abf65395eb10e55354c8fe59ed6b3265402ffccb919a813bc781 libXrandr-1.5.4.tar.xz
|
|
"
|