Received: from out.migadu.com (out.migadu.com [91.121.223.63]) by nld3-dev1.alpinelinux.org (Postfix) with ESMTPS id 874B87819D8 for ; Sun, 2 Feb 2020 22:35:41 +0000 (UTC) Received: (Migadu outbound); Sun, 02 Feb 2020 22:35:40 +0000 Authentication-Results: out.migadu.com; auth=pass (plain) Received: from loki.galenabell.com (24-181-218-135.dhcp.hckr.nc.charter.com [24.181.218.135]) by out.migadu.com (Haraka/2.8.16) with ESMTPSA id 111B6C09-F965-47B2-AF34-756E60590B11.1 envelope-from (authenticated bits=0) (version=TLSv1/SSLv3 cipher=ECDHE-RSA-AES256-GCM-SHA384 verify=FAIL); Sun, 02 Feb 2020 22:35:40 +0000 From: Galen Abell To: alpine-aports@lists.alpinelinux.org Cc: Galen Abell Subject: [PATCH] testing/clipman: new aport Date: Sun, 2 Feb 2020 17:35:36 -0500 Message-Id: <20200202223536.5204-1-galen@galenabell.com> X-Mailer: git-send-email 2.25.0 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit DKIM-Signature: v=1;a=rsa-sha256;bh=s54XrleVMN67Suxtw4I7j5llEj530USNjOmtvmLw9wc=;c=relaxed/simple;d=galenabell.com;h=from:subject:date:to;s=default;b=c+VfcHzZBZHwE76JtdbWZ888w1X+9VhcLdDQtGVGCfiI88Wam7G9OhQAmTMdbZlpyi034QfrrUlEYhPLM7nLuASgjLX0sD/CQAhtrbHxdXdwL5AkjU0esK9cjMmnEu/fh28ssGuKjyG0LpVXhxn+oT8IGSYcZdrH8+t4b3ejwjs= https://github.com/yory8/clipman A simple clipboard manager for Wayland testing/ --- testing/clipman/APKBUILD | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 testing/clipman/APKBUILD diff --git a/testing/clipman/APKBUILD b/testing/clipman/APKBUILD new file mode 100644 index 0000000000..e2f29a0cd2 --- /dev/null +++ b/testing/clipman/APKBUILD @@ -0,0 +1,22 @@ +# Contributor: Galen Abell +# Maintainer: Galen Abell +pkgname="clipman" +pkgver="1.2.0" +pkgrel=0 +pkgdesc="A simple clipboard manager for Wayland" +url="https://github.com/yory8/clipman" +arch="all" +license="GPL-3.0-only" +depends="wl-clipboard" +makedepends="go" +options="!check" # no tests +source="$pkgname-$pkgver.tar.gz::https://github.com/yory8/clipman/archive/v$pkgver.tar.gz" + +build() { + go build -o $pkgname +} + +package() { + install -Dm755 $pkgname "$pkgdir"/usr/bin/$pkgname +} +sha512sums="677652bc21b8b6d800c615d3ffc70fa934b8d934d430eec5f0baf262822092a138e4514c01415eae4584dbbc30c33d147a54f5ba06b1e2f468ae984769ddcfd1 clipman-1.2.0.tar.gz" -- 2.25.0