Another copy of my dotfiles. Because I don't completely trust GitHub.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
512 B

  1. # `dmenu` is not a hard dependency, but you need it unless
  2. # you plan to set CM_LAUNCHER to another value like `rofi`
  3. REQUIRED_BINS := xsel clipnotify
  4. PREFIX ?= /usr
  5. $(foreach bin,$(REQUIRED_BINS),\
  6. $(if $(shell command -v $(bin) 2> /dev/null),$(info Found `$(bin)`),$(error Missing Dep. Please install `$(bin)`)))
  7. .PHONY: install
  8. install:
  9. install --target "${PREFIX}/bin" -D -m755 clipmenu clipmenud clipdel clipctl
  10. install -D -m644 init/clipmenud.service "${PREFIX}/lib/systemd/user/clipmenud.service"