Received: from out2.migadu.com (out2.migadu.com [188.165.223.204]) by gbr-app-1.alpinelinux.org (Postfix) with ESMTPS id F3D542231C1 for <~alpine/aports@lists.alpinelinux.org>; Fri, 17 Feb 2023 21:45:46 +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=1676670345; 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=CxxJOtXg4OkbcWnXo+QwlhIYzUSeQwQNWzZvf5TS4AQ=; b=ZcpUU7ciqcLKHVO1cUpxfCX4ivCHom0CkoMwHpqKnnhCRB2sVRb9/z6tFS2nEZD+kolf1q 7QgeQLZjvSjPbZZ8x/syH0qSMDoEy8I1W66pGtBob0rl5pT+D5NVtR+PVnpkByE3ocI+rR fiZ86dterd8MeUj88tphapxfAPlcdeWFLXdD2APEToLJJ1R/tSjwt/NYTDWiDKzPg2ZHxf 57ouznqlScK935Gr0GkU5UwG6GaiLmV9NwGM9bR728eaPOYiC8oqF7VIHCZhov2sQcaOis XoCzxCarU0TPA8wuDrHt1Nd2nds3KCGbXcNqnHsLoyf09YkKongxmE7r6Iafmg== From: Coco Liliace To: ~alpine/aports@lists.alpinelinux.org Cc: chloe@liliace.dev Subject: [PATCH] testing/when: new aport Date: Fri, 17 Feb 2023 16:45:10 -0500 Message-Id: <20230217214509.1664-1-chloe@liliace.dev> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Migadu-Flow: FLOW_OUT https://www.lightandmatter.com/when/when.html An extremely simple personal calendar program --- testing/when/APKBUILD | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 testing/when/APKBUILD diff --git a/testing/when/APKBUILD b/testing/when/APKBUILD new file mode 100644 index 00000000..4c2a3e23 --- /dev/null +++ b/testing/when/APKBUILD @@ -0,0 +1,26 @@ +# Contributor: Coco Liliace +# Maintainer: Coco Liliace +pkgname=when +pkgver=1.1.45 +pkgrel=0 +pkgdesc="An extremely simple personal calendar program" +url="https://www.lightandmatter.com/when/when.html" +arch="noarch" +license="GPL-2.0-only" +depends="perl" +subpackages="$pkgname-doc" +_gitrev="3dacb13c155e" +source="$pkgname-$pkgver.tar.gz::https://bitbucket.org/ben-crowell/when/get/$_gitrev.tar.gz" +builddir="$srcdir/ben-crowell-$pkgname-$_gitrev" + +check() { + make test +} + +package() { + make install DESTDIR="$pkgdir" +} + +sha512sums=" +5e0a62d2770c81d77b486b2a8d300c5fb20de36b81b7cf3a60d3e5d985ff4f689a57aecb7b6b659982b975b95b624a1354aeac35dc4b42411a4251adf7cedaf7 when-1.1.45.tar.gz +" -- 2.39.2