mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-02-01 22:11:30 +01:00
36 lines
876 B
Plaintext
36 lines
876 B
Plaintext
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
|
|
pkgname=libxcursor
|
|
pkgver=1.2.0
|
|
pkgrel=0
|
|
pkgdesc="X cursor management library"
|
|
url="http://xorg.freedesktop.org/"
|
|
arch="all"
|
|
license="MIT"
|
|
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="2b12d0fd17e311ce269dbba58588698885815eb07aa44d48525ed5cd9e5f379bb90138a792a191e2f74888ab10b3ca9a4f507f21de0984ed79748973ab927a03 libXcursor-1.2.0.tar.bz2"
|