mirror of
https://github.com/openbsd/ports.git
synced 2026-06-17 23:13:55 +02:00
015f07aaff
clipboard history manager for Wayland
cliphist is a clipboard history manager for wayland
- write clipboard changes to a history file
- recall history with dmenu / rofi / wofi (or whatever other picker you like)
- both text and images are supported
- clipboard is preserved byte-for-byte
- leading / trailing whitespace / no whitespace or newlines are
preserved
- won't break fancy editor selections like vim wordwise, linewise,
block mode
- no concept of a picker, only pipes
WWW: https://github.com/sentriz/cliphist
ok landry@
25 lines
521 B
Makefile
25 lines
521 B
Makefile
COMMENT = clipboard history manager for Wayland
|
|
|
|
MODGO_MODNAME = go.senan.xyz/cliphist
|
|
MODGO_VERSION = v0.7.0
|
|
DISTNAME = cliphist-${MODGO_VERSION}
|
|
|
|
CATEGORIES = wayland
|
|
|
|
MAINTAINER = Volker Schlecht <volker@openbsd.org>
|
|
|
|
# GPLv3-only
|
|
PERMIT_PACKAGE = Yes
|
|
|
|
MODULES = lang/go
|
|
|
|
RUN_DEPENDS = wayland/wl-clipboard
|
|
|
|
post-install:
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/examples/cliphist/
|
|
${INSTALL_DATA} ${WRKSRC}/contrib/cliphist-* \
|
|
${PREFIX}/share/examples/cliphist/
|
|
|
|
.include "modules.inc"
|
|
.include <bsd.port.mk>
|