Received: from out1.migadu.com (out1.migadu.com [91.121.223.63]) by nld3-dev1.alpinelinux.org (Postfix) with ESMTPS id 5B0CE7810F0 for <~alpine/aports@lists.alpinelinux.org>; Mon, 13 Dec 2021 18:54: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=cmpwn.com; s=key1; t=1639421140; 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=C2n5tA5VuuobsB29s80Rkbt1koOryXokhszg1YjUoiE=; b=TGVXr9oavmAsEW2x1IIj2qnddEBlIvMvVrBsEYlwZqurgOmxt28FwZn6DOkK5yX9yEHwc+ hl/eHGNaQSPrPN0v17hJIno7krtM/qwIejZ7ejtD/usuqtLLYJpQcN1Md9TEh6kgy8lZbo 3OpQ5jH93j0BamUo26XCRi876Yn3qMnztK1bPIAnGILyyBn0AO+9BRb+kbHxJjVIhYy0Go 4tt/3TfyTVZFK0wY2BAv3dNXM+0Z0+shYNMta7sjYaI7KZpNeMDULRzUbXE1bGNHG2Mess 26hzTbzqNNtVMYhSFOwVXMR95q0sDdp37Q0mkARe4xiZ66wJyZTV0Qa3k/g4dg== From: Drew DeVault To: ~alpine/aports@lists.alpinelinux.org Cc: Drew DeVault Subject: [PATCH] testing/libui: new aport Date: Mon, 13 Dec 2021 19:45:38 +0100 Message-Id: <20211213184538.28676-1-sir@cmpwn.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Migadu-Flow: FLOW_OUT X-Migadu-Auth-User: sir@cmpwn.com --- testing/libui/APKBUILD | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 testing/libui/APKBUILD diff --git a/testing/libui/APKBUILD b/testing/libui/APKBUILD new file mode 100644 index 0000000000..df6b463526 --- /dev/null +++ b/testing/libui/APKBUILD @@ -0,0 +1,32 @@ +# Maintainer: Drew DeVault +pkgname=libui +pkgver=4.1_alpha20211213 +_commit=fea45b2d5b75839be0af9acc842a147c5cba9295 +pkgrel=0 +pkgdesc="Simple and portable GUI library for C" +url="https://github.com/andlabs/libui" +arch="all" +license="MIT" +options="!check" # no test suite +makedepends=" + meson + gtk+3.0-dev + " +subpackages="$pkgname-dev" +source="$pkgname-$pkgver.tar.gz::https://github.com/andlabs/libui/archive/$_commit.tar.gz" +builddir="$srcdir/$pkgname-$_commit" + +build() { + pwd + echo $builddir + abuild-meson . output + meson compile ${JOBS:+-j ${JOBS}} -C output +} + +package() { + DESTDIR="$pkgdir" meson install --no-rebuild -C output +} + +sha512sums=" +59f31e0b0afff0f41592f5edaa495b89275e1bc7329312145dcea2896aa2898658b60c187be8f805b4cf1c23ce1ae4171c637f115d716998569d5c53e103217b libui-4.1_alpha20211213.tar.gz +" -- 2.34.1