Received: from out0.migadu.com (out0.migadu.com [94.23.1.103]) by nld3-dev1.alpinelinux.org (Postfix) with ESMTPS id 15D6D781AA3 for ; Thu, 6 May 2021 14:52:31 +0000 (UTC) X-Report-Abuse: Please report any abuse attempt to abuse@migadu.com and include these headers. DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=bl4ckb0ne.ca; s=default; t=1620312749; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding; bh=fCIO7P9FoToRWPWsgjUvt5Lc+YmqWfAH0/A1oGXSLx4=; b=JSgNoOsQUVCOp1RbdgkZdPt0Yxij4pP9lZAhA/TmiIhpNQu1nbWOD779RFbr5ajKjJZwt9 Jhpo+5iLrmjDjOB/Ic0v+JR/cGluZBBsuqs9zymarjnOPpK+6TjZrp5OC6MnOzHsU4PCLE +jeKRvLIHZdTraqmDkJGqia/D//0sTU= From: Simon Zeni To: alpine-aports@lists.alpinelinux.org Cc: Simon Zeni Subject: [PATCH] testing/wayland-utils: new aport Date: Thu, 6 May 2021 10:52:21 -0400 Message-Id: <20210506145221.20715-1-simon@bl4ckb0ne.ca> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Migadu-Flow: FLOW_OUT X-Migadu-Auth-User: simon@bl4ckb0ne.ca https://wayland.freedesktop.org Wayland utils tools --- testing/wayland-utils/APKBUILD | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 testing/wayland-utils/APKBUILD diff --git a/testing/wayland-utils/APKBUILD b/testing/wayland-utils/APKBUILD new file mode 100644 index 0000000000..bfc5c0a8e2 --- /dev/null +++ b/testing/wayland-utils/APKBUILD @@ -0,0 +1,24 @@ +# Maintainer: Simon Zeni +pkgname=wayland-utils +pkgver=1.0.0 +pkgrel=0 +pkgdesc="Wayland utils tools" +url="https://wayland.freedesktop.org" +arch="all" +license="MIT" +options="!check" # contains no test suite +makedepends="wayland-dev wayland-protocols" +subpackages="$pkgname-doc" +source="https://wayland.freedesktop.org/releases/wayland-utils-$pkgver.tar.xz" + +build() { + abuild-meson . build + meson compile ${JOBS:+-j ${JOBS}} -C build +} + +package() { + DESTDIR="$pkgdir" meson install --no-rebuild -C build +} +sha512sums=" +4c6f1822435b36b3acd361c0c54e56150e8a2697a9c4b2c20a149fcfaafe237e45807df3471884ddf594d89558001099e2d938e3f48988ba6950a0f1e3538db2 wayland-utils-1.0.0.tar.xz +" -- 2.31.1