Received: from out2.migadu.com (out2.migadu.com [188.165.223.204]) by nld3-dev1.alpinelinux.org (Postfix) with ESMTPS id 0BF8F782BBE for ; Sun, 30 May 2021 16:36:19 +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=stacyharper.net; s=key1; t=1622392577; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding; bh=ue4g0MDmBICYGIAPyJoRgxIH/M64Q9I8CJ83O7Tu5Uo=; b=FVEaNCor7JL2Z+RCZOcMLJL1aGKHPJKcbaRV9kHELt7S8lyAQnGeVS5FR+zQPmbZbp/rEH JzOdBmo/IGjoI/Sw5ekBBWfFUtLVmwtS5mbH2L+jJsPC9FFND2yhBhaJ6rGzhAaXkKtTQ1 g25xDhKZFDe7doMZ+BxQTSSlE//GQvc/K/Sukb8qCB8BBQ5jMITl2QDBeEJelnltD7OCXt heR8oJSVQ5oDcaCNu4t0OjM7lCeXjTvQh7Ps3lIHvATc8Uke+RNlGkaxXNJ7mpgskh8zOi Io7ZNVGpPkMtI8qKj5/8p4X+u8v4hsm88Mx/m/PIvpaO6W+lg5Dv9xoICw4MsA== From: Stacy Harper To: alpine-aports@lists.alpinelinux.org Subject: [PATCH v4] community/gmnitohtml: new aport Date: Sun, 30 May 2021 18:36:16 +0200 Message-Id: <20210530163616.22947-1-contact@stacyharper.net> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Migadu-Flow: FLOW_OUT X-Migadu-Auth-User: contact@stacyharper.net https://git.sr.ht/~adnano/gmnitohtml Gemini text to HTML converter testing/ Signed-off-by: Stacy Harper --- community/gmnitohtml/APKBUILD | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 community/gmnitohtml/APKBUILD diff --git a/community/gmnitohtml/APKBUILD b/community/gmnitohtml/APKBUILD new file mode 100644 index 0000000000..a140094d84 --- /dev/null +++ b/community/gmnitohtml/APKBUILD @@ -0,0 +1,28 @@ +# Contributor: Stacy Harper +# Maintainer: Stacy Harper +pkgname=gmnitohtml +pkgver=0.1.0 +pkgrel=0 +pkgdesc="Gemini text to HTML converter" +options="!check" # No testsuite +url="https://git.sr.ht/~adnano/gmnitohtml" +arch="all" +license="GPL-3.0-only" +makedepends="go scdoc" +subpackages="$pkgname-doc" +source=" + $pkgname-$pkgver.tar.gz::https://git.sr.ht/~adnano/gmnitohtml/archive/$pkgver.tar.gz + " + +build() { + go build -v -o bin/$pkgname --tags extended + make gmnitohtml.1 +} + +package() { + install -Dm755 bin/$pkgname "$pkgdir"/usr/bin/$pkgname + install -Dm644 *.1 -t "$pkgdir"/usr/share/man/man1 +} +sha512sums=" +deacc56784dbd7cbcf41ecdab294d089b6ef1fd3a8a6ba9843295106b7151fcad59b1ca4deedb3669ec85204bbe798c0f7ec3a17fec5d68eceec11691a57abbc gmnitohtml-0.1.0.tar.gz +" -- 2.31.1