mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-04-20 22:26:50 +02:00
32 lines
821 B
Text
32 lines
821 B
Text
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
|
|
pkgname=libxfixes
|
|
pkgver=6.0.1
|
|
pkgrel=4
|
|
pkgdesc="X11 miscellaneous 'fixes' extension library"
|
|
url="https://xorg.freedesktop.org/"
|
|
arch="all"
|
|
license="MIT"
|
|
options="!check" # No test suite.
|
|
makedepends="xorgproto libx11-dev util-macros"
|
|
subpackages="$pkgname-dev $pkgname-doc"
|
|
source="https://www.x.org/releases/individual/lib/libXfixes-$pkgver.tar.xz"
|
|
builddir="$srcdir"/libXfixes-$pkgver
|
|
|
|
build() {
|
|
./configure \
|
|
--build=$CBUILD \
|
|
--host=$CHOST \
|
|
--prefix=/usr \
|
|
--sysconfdir=/etc \
|
|
--mandir=/usr/share/man \
|
|
--localstatedir=/var
|
|
make
|
|
}
|
|
|
|
package() {
|
|
make DESTDIR="$pkgdir" install
|
|
}
|
|
|
|
sha512sums="
|
|
b46deffb30cd73ec8a127390d99f2ba2f3ab78f334fdba227f1f461441644a0c169b0d13ffa47576fa458780e7a6db664ff8b93e9195fb217262efd8128f1ffe libXfixes-6.0.1.tar.xz
|
|
"
|