Received: from out-41.mta0.migadu.com (out-41.mta0.migadu.com [IPv6:2001:41d0:1004:224b::29]) by gbr-app-1.alpinelinux.org (Postfix) with ESMTPS id 6954B222F87 for <~alpine/aports@lists.alpinelinux.org>; Tue, 21 Feb 2023 04:06:27 +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=liliace.dev; s=key1; t=1676952384; 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=JWT2g6WrX1U1CFQm+9iKdr4G4eK7JLn0HVUkXsC6knc=; b=fWasNHoR9ASyr43LQIvJFYPx/SxrrnUqzagzUcoVm3oVDbzYfH+kooqx+IXF7U4EJwb6nr uxfXGn8yLr0qTPIpeiOZ9IwrV1O54qIb4ltC1atQwy/0V8p4EtTRnXzTtGKV1s3gUnR+rB w2vMc7cNMRDtMvW2dguusHQd0oGSQK32Q2xOWuDnj6E+R3fF5mbPKRcKwpqBjJO7PW6GSI afoUZRsV64byxG3lXru/O1WrjEvg9L1MvA2VwfbbdYbuWHsSD0fYqTsNWPHxd2BjnifnFG HHL9NaT89Gbrt+MhRxG5Sdwhw/nO71Q8tYaC0FIyzsBHrgnonghvWivnDkgKQg== From: Coco Liliace To: ~alpine/aports@lists.alpinelinux.org Cc: chloe@liliace.dev Subject: [PATCH] testing/queercat: new aport Date: Mon, 20 Feb 2023 23:05:21 -0500 Message-Id: <20230221040520.14307-1-chloe@liliace.dev> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Migadu-Flow: FLOW_OUT https://github.com/Elsa002/queercat A version of lolcat with options for some lgbtq+ flags --- testing/queercat/APKBUILD | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 testing/queercat/APKBUILD diff --git a/testing/queercat/APKBUILD b/testing/queercat/APKBUILD new file mode 100644 index 00000000..f9cfbd0d --- /dev/null +++ b/testing/queercat/APKBUILD @@ -0,0 +1,27 @@ +# Contributor: Coco Liliace +# Maintainer: Coco Liliace +pkgname=queercat +pkgver=2.0 +pkgrel=0 +# upstream does not have tagged releases so we rely on the commit hash +_gitrev="725c61d77288b4d2bae453164f2830f68799cac5" +pkgdesc="A version of lolcat with options for some lgbtq+ flags" +url="https://github.com/Elsa002/queercat" +arch="x86_64" +license="Unlicense" +makedepends="gcc" +options="!check" # no tests +source="https://github.com/Elsa002/queercat/archive/$_gitrev.zip" +builddir="$srcdir/$pkgname-$_gitrev" + +build() { + gcc main.c -lm -o queercat +} + +package() { + install -Dt "$pkgdir"/usr/bin queercat +} + +sha512sums=" +c627817595ce2bf7c594adc6a1c079588ba6dc81f32983002cc91123a9856545b1e712c0621d29835d8b870e633e058ade0aef6bc6e2636d48914727df009542 725c61d77288b4d2bae453164f2830f68799cac5.zip +" -- 2.39.2