Received: from knopi.disroot.org (knopi.disroot.org [178.21.23.139]) by nld3-dev1.alpinelinux.org (Postfix) with ESMTPS id 6E43E782B23 for <~alpine/aports@lists.alpinelinux.org>; Tue, 31 Aug 2021 07:26:47 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by disroot.org (Postfix) with ESMTP id 0E2BC63C0F; Tue, 31 Aug 2021 09:26:47 +0200 (CEST) X-Virus-Scanned: Debian amavisd-new at disroot.org Received: from knopi.disroot.org ([127.0.0.1]) by localhost (disroot.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id szX5682xm7Il; Tue, 31 Aug 2021 09:26:45 +0200 (CEST) From: Alexey Yerin DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=disroot.org; s=mail; t=1630394805; bh=8PYq2P6efa8oeoARmyRhPvY5OThIaqqV/NgDFXTVdoQ=; h=From:To:Cc:Subject:Date; b=aFXu+ia9TcC5+MdaXajz+lC396m7u65db3iVftRhzLabezgEUFGiBiU/MYU0G/VMM e5OWcONLgcAkkCaZRwIiZxzG5OqEUo3Pow7udLv8DXAixl9ixbhEItIKgA0skzaxAG x+AtVo+uRlg68lEq/zcK1nmk/ZFnaPZu47uifo2A1DLNn1J8J2OYlVbWTZ134foHaE EgCwilIhMzJ0jYMy70hTHDnho12tr3WfYoSgBGYoKfZLBaBvS/+vqvWUxUimfVROdU B2LmUodKR5D41FrIj1iIBy11jI7ebfj2sfjLZds+zGG7SQaL8zcn3xF6ZXKLqGe1da ayMHSbjiWFehA== To: ~alpine/aports@lists.alpinelinux.org Cc: Alexey Yerin Subject: [PATCH v2] testing/tut: new aport Date: Tue, 31 Aug 2021 10:26:42 +0300 Message-Id: <20210831072642.22682-1-yyp@disroot.org> Mime-Version: 1.0 Content-Transfer-Encoding: 8bit TUI client for Mastdon https://github.com/RasmusLindroth/tut --- v1 -> v2: * Fix source URL testing/tut/APKBUILD | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 testing/tut/APKBUILD diff --git a/testing/tut/APKBUILD b/testing/tut/APKBUILD new file mode 100644 index 0000000000..02c4ec6161 --- /dev/null +++ b/testing/tut/APKBUILD @@ -0,0 +1,31 @@ +# Contributor: Alexey Yerin +# Maintainer: Alexey Yerin +pkgname=tut +pkgver=0.0.29 +pkgrel=0 +pkgdesc="TUI for Mastodon" +url="https://github.com/RasmusLindroth/tut" +arch="all" +license="MIT" +makedepends="go" +source=" + $pkgname-$pkgver.tar.gz::https://github.com/RasmusLindroth/tut/archive/refs/tags/$pkgver.tar.gz +" +options="net !check" # no tests + +export GOPATH="$srcdir/go" +export GOFLAGS="$GOFLAGS -modcacherw -trimpath" + +build() { + cd "$builddir" + go build $GOFLAGS -o tut +} + +package() { + cd "$builddir" + install -D -m755 tut "$pkgdir"/usr/bin/tut +} + +sha512sums=" +487ca2b51eb8349d621da09f43f3797ff9f62e51a15793cb8ec290fd0da4be38b42a4e283442c70573b75036f33eab3aa32f1cf217809a1c1aef4b37053bf375 tut-0.0.29.tar.gz +" -- 2.33.0