wl-clipboard: initial commit, version 2.1.0

This commit is contained in:
Tim Biermann 2022-10-30 10:07:12 +00:00
parent cafacdf726
commit c80f1c9d9c
Signed by: tb
GPG Key ID: 42F8B4E30B673606
3 changed files with 42 additions and 0 deletions

10
wl-clipboard/.footprint Normal file
View File

@ -0,0 +1,10 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/bin/
-rwxr-xr-x root/root usr/bin/wl-copy
-rwxr-xr-x root/root usr/bin/wl-paste
drwxr-xr-x root/root usr/share/
drwxr-xr-x root/root usr/share/man/
drwxr-xr-x root/root usr/share/man/man1/
-rw-r--r-- root/root usr/share/man/man1/wl-clipboard.1.gz
-rw-r--r-- root/root usr/share/man/man1/wl-copy.1.gz
-rw-r--r-- root/root usr/share/man/man1/wl-paste.1.gz

5
wl-clipboard/.signature Normal file
View File

@ -0,0 +1,5 @@
untrusted comment: verify with /etc/ports/contrib.pub
RWSagIOpLGJF37HsN05G04B+jNErn/RIOOz7DihCHqE7NBvcDhlHU0wZAz+X9pKzpXRjlKCZAktI6Exh4mFOooVm2jb2mIQS8gE=
SHA256 (Pkgfile) = cdc53ce72c1de3947c0d6576a49bd1df46d96171397ebb5f254f9dd5a4e459ca
SHA256 (.footprint) = 011182cba71b7975baa2ba8ced498d8e8ea52041e24a876a4699c9eee5146daf
SHA256 (wl-clipboard-2.1.0.tar.gz) = 72dab9a7d3835c76d6ff2089f15ffec9e064a321e5f3cbbe961a8fa81aff5573

27
wl-clipboard/Pkgfile Normal file
View File

@ -0,0 +1,27 @@
# Description: Command-line copy/paste utilities for Wayland
# URL: https://github.com/bugaevc/wl-clipboard
# Maintainer: Tim Biermann, tbier at posteo dot de
# Depends on: wayland
# Optional: wayland-protocols xdg-utils
name=wl-clipboard
version=2.1.0
release=1
source=(https://github.com/bugaevc/wl-clipboard/archive/v$version/$name-$version.tar.gz)
build() {
prt-get isinst zsh || PKGMK_WLC+=' -D zshcompletiondir=no'
#prt-get isinst zsh && PKGMK_WLC+=' -D zshcompletiondir=/usr/share/zsh/site-functions/'
meson setup $name-$version build $PKGMK_WLC \
--prefix=/usr \
--buildtype=plain \
--wrap-mode nodownload \
-D b_lto=true \
-D b_pie=true \
-D fishcompletiondir=no
meson compile -C build
DESTDIR=$PKG meson install -C build
prt-get isinst bash-completion || rm -r $PKG/usr/share/bash-completion
}