5b2f1bbb91
clipmenu is a simple clipboard manager using dmenu or rofi. Despite being only <300 lines, clipmenu has many useful features, including: * Customising the maximum number of clips stored (default 1000) * Disabling clip collection temporarily with clipctl * Not storing clipboard changes from certain programs, like password managers * Taking direct ownership of the clipboard from Thim Cederlund, thanks! ok sthen@
32 lines
617 B
Makefile
32 lines
617 B
Makefile
COMMENT = simple clipboard manager using dmenu
|
|
|
|
GH_ACCOUNT = cdown
|
|
GH_PROJECT = clipmenu
|
|
GH_TAGNAME = 6.2.0
|
|
|
|
CATEGORIES = x11
|
|
|
|
MAINTAINER = Thim Cederlund <thim@cederlund.de>
|
|
|
|
# Unlicense
|
|
PERMIT_PACKAGE = Yes
|
|
|
|
RUN_DEPENDS = shells/bash \
|
|
sysutils/flock \
|
|
sysutils/truncate \
|
|
x11/clipnotify \
|
|
x11/dmenu \
|
|
x11/xsel
|
|
|
|
NO_TEST = Yes
|
|
NO_BUILD = Yes
|
|
|
|
do-install:
|
|
.for x in clipctl clipdel clipfsck clipmenu clipmenud
|
|
${INSTALL_SCRIPT} ${WRKSRC}/$x ${PREFIX}/bin/
|
|
.endfor
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/clipmenu/
|
|
${INSTALL_DATA} ${WRKSRC}/README.md ${PREFIX}/share/doc/clipmenu/
|
|
|
|
.include <bsd.port.mk>
|