~alpine/aports

testing/wl-clipboard-x11: new aport v1 PROPOSED

Robert Sacks: 1
 testing/wl-clipboard-x11: new aport

 1 files changed, 25 insertions(+), 0 deletions(-)
Export patchset (mbox)
How do I use this?

Copy & paste the following snippet into your terminal to import this patchset into git:

curl -s https://lists.alpinelinux.org/~alpine/aports/patches/698/mbox | git am -3
Learn more about email & git

[alpine-aports] [PATCH] testing/wl-clipboard-x11: new aport Export this patch

https://github.com/brunelli/wl-clipboard-x11
A wrapper to use wl-clipboard as a drop-in replacement to X11 clipboard tools
---
 testing/wl-clipboard-x11/APKBUILD | 25 +++++++++++++++++++++++++
 1 file changed, 25 insertions(+)
 create mode 100644 testing/wl-clipboard-x11/APKBUILD

diff --git a/testing/wl-clipboard-x11/APKBUILD b/testing/wl-clipboard-x11/APKBUILD
new file mode 100644
index 0000000000..3143892d81
--- /dev/null
+++ b/testing/wl-clipboard-x11/APKBUILD
@@ -0,0 +1,25 @@
# Contributor: Robert Sacks <robert@sacks.email>
# Maintainer: Robert Sacks <robert@sacks.email>
pkgname=wl-clipboard-x11
pkgver=3
pkgrel=0
pkgdesc="A wrapper to use wl-clipboard as a drop-in replacement to X11 clipboard tools"
url="https://github.com/brunelli/wl-clipboard-x11"
arch="noarch"
license="GPL-3.0"
options="!check"
conflicts="xclip xsel"
provides="xclip xsel"
depends="wl-clipboard"
makedepends="make sed"
subpackages="$pkgname-doc"
source="$pkgname-$pkgver.tar.gz::https://github.com/brunelli/$pkgname/archive/v$pkgver.tar.gz"
builddir="$srcdir/$pkgname-$pkgver"

package() {
    cd "$builddir"
    sed -i '/^[[:space:]]\+@ln -.*$/s/\$(DESTDIR)//' Makefile
    DESTDIR="$pkgdir" make install
}

sha512sums="01a0e48328e3cd0bd551e3ac0af6b64094b540a5aeea51ecbee50686ee8ffb5447cec538180fa7459967a4fcdd8b1d5bd6b515a100e1a77a97f7b01f83197816  wl-clipboard-x11-3.tar.gz"
-- 
2.21.0



---
Unsubscribe:  alpine-aports+unsubscribe@lists.alpinelinux.org
Help:         alpine-aports+help@lists.alpinelinux.org
---
Milan P. Stanić <mps@arvanta.net>
Hi,

I applied patch with some fix and cleanups.

Thanks for help

-- 
regards

On Fri, 2019-05-17 at 16:52, Robert Sacks wrote: