Received: from sebsite.pw (sebsite.pw [71.19.150.50]) by nld3-dev1.alpinelinux.org (Postfix) with ESMTPS id 02E25780DE2 for <~alpine/aports@lists.alpinelinux.org>; Sun, 13 Feb 2022 00:01:31 +0000 (UTC) Received: from localhost.localdomain (unknown [8.9.88.219]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by sebsite.pw (Postfix) with ESMTPSA id 2EF3F38010A; Sun, 13 Feb 2022 00:00:49 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=sebsite.pw; s=sebsite; t=1644710449; bh=CFcl5y5Ga2nlH1JatsRFBoA5MYsOojGrzDnfgwZnS8E=; h=From:To:Cc:Subject:Date; b=YoDx3HbmUcq/Uj7ikneuGRz4S1ZPJkQVjchjS+G+2fasGce3hBOfX6x9BXTYFODJj 9hOi/t3UxF28d/UDS+01nZO3J1pfRR4nf8mdvAHdfIcC38xH4qJzgWi84Su2c4c4sk x/sBN8L+y1hLC0hY5EFeY3OU+Wn4NsIapcJTvy7XnfBhDVIYdDBPW+d/Utuji0QZzM iRSXpyBXOEjx8scpI38WViRaQBIFa3Fy4rDLUmkWuIa1F9FJMbe1Nt4M7uE1m2D3Uh QJ1c17Hvm/Pg3x4bN7iD5IejY3R/NwIoBeGGJswIoP9+cFjJbANOAL+jEfXX/Lo/Xf SXcrNCcA/dgTQ== From: Sebastian To: ~alpine/aports@lists.alpinelinux.org Cc: Sebastian Subject: [PATCH] testing/metalang99: new aport Date: Sat, 12 Feb 2022 19:00:02 -0500 Message-Id: <20220213000002.6858-1-sebastian@sebsite.pw> X-Mailer: git-send-email 2.34.1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit https://github.com/Hirrolot/metalang99 C meta-programming language built with pre-processor macros Signed-off-by: Sebastian --- testing/metalang99/APKBUILD | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 testing/metalang99/APKBUILD diff --git a/testing/metalang99/APKBUILD b/testing/metalang99/APKBUILD new file mode 100644 index 00000000..000c4154 --- /dev/null +++ b/testing/metalang99/APKBUILD @@ -0,0 +1,22 @@ +# Contributor: Sebastian Hudak +# Maintainer: Sebastian Hudak +pkgname=metalang99 +pkgver=1.13.1 +pkgrel=0 +pkgdesc="C meta-programming language built with pre-processor macros" +url="https://github.com/Hirrolot/metalang99" +arch="noarch" +license="MIT" +checkdepends="bash cmake" +source="$pkgname-$pkgver.tar.gz::https://github.com/Hirrolot/metalang99/archive/v$pkgver.tar.gz" + +check() { + scripts/test.sh +} + +package() { + mkdir -p "$pkgdir"/usr + cp -r include "$pkgdir"/usr/include +} + +sha512sums="ef9daaf279ca1256dbc9011eecc07616e9162404bb720cdb24b4910eb7133997257809dfe6826db758fbe90def46efecfff3c281b8fd29ab34d6e5cb8f5c8feb metalang99-1.13.1.tar.gz" -- 2.34.1