mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-03-10 08:01:50 +01:00
35 lines
880 B
Plaintext
35 lines
880 B
Plaintext
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
|
|
pkgname=libxcursor
|
|
pkgver=1.1.15
|
|
pkgrel=1
|
|
pkgdesc="X cursor management library"
|
|
url="http://xorg.freedesktop.org/"
|
|
arch="all"
|
|
license="custom"
|
|
options="!check" # No test suite.
|
|
subpackages="$pkgname-dev $pkgname-doc"
|
|
depends=
|
|
makedepends="xorgproto util-macros libx11-dev libxrender-dev libxfixes-dev"
|
|
source="https://www.x.org/releases/individual/lib/libXcursor-$pkgver.tar.bz2"
|
|
builddir="$srcdir"/libXcursor-$pkgver
|
|
|
|
# secfixes:
|
|
# 1.1.15-r0:
|
|
# - CVE-2017-16612
|
|
|
|
build() {
|
|
cd "$builddir"
|
|
./configure \
|
|
--build=$CBUILD \
|
|
--host=$CHOST \
|
|
--prefix=/usr \
|
|
--sysconfdir=/etc
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "$builddir"
|
|
make DESTDIR="$pkgdir" install
|
|
}
|
|
sha512sums="53ad0fa2afd7b4cf1108b560e44ea71abdf5c55a18df243d7123942513589c927f5c105395f790d8769959e0129db54264e6aac7efd51a5f1aec270379b1f2f5 libXcursor-1.1.15.tar.bz2"
|