mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-05 13:27:09 +02:00
38 lines
950 B
Plaintext
38 lines
950 B
Plaintext
# Contributor: Sören Tempel <soeren+alpine@soeren-tempel.net>
|
|
# Maintainer: Valery Kartel <valery.kartel@gmail.com>
|
|
pkgname=wayland-protocols
|
|
pkgver=1.13
|
|
pkgrel=0
|
|
pkgdesc="Protocols and protocol extensions complementing the Wayland core protocol"
|
|
url="http://wayland.freedesktop.org"
|
|
arch="noarch"
|
|
license="MIT"
|
|
depends=
|
|
provides="$pkgname-dev"
|
|
makedepends="wayland-dev"
|
|
subpackages=
|
|
source="https://wayland.freedesktop.org/releases/$pkgname-$pkgver.tar.xz"
|
|
builddir="$srcdir/$pkgname-$pkgver"
|
|
|
|
build() {
|
|
cd "$builddir"
|
|
./configure \
|
|
--build=$CBUILD \
|
|
--host=$CHOST \
|
|
--prefix=/usr \
|
|
--sysconfdir=/etc \
|
|
--mandir=/usr/share/man \
|
|
--localstatedir=/var
|
|
make
|
|
}
|
|
|
|
check() {
|
|
make -C "$builddir" check
|
|
}
|
|
|
|
package() {
|
|
make -C "$builddir" DESTDIR="$pkgdir" install
|
|
}
|
|
|
|
sha512sums="f35c21da289038651b75af064ec7c10779158829f578e7320faf401e980da3c958d85e5bcad00994c574cac6319a3ab975aa5483a9b438f781b767bd6303e194 wayland-protocols-1.13.tar.xz"
|