scripts

Various scripts for UNIX-like systems
git clone https://git.tronto.net/scripts
Download | Log | Files | Refs | README

Makefile (902B)


      1 PREFIX = /usr/local
      2 
      3 SCRIPTS =       2fa \
      4 		aoc \
      5 		battery-checknow \
      6 		battery-status \
      7 		clip \
      8 		cth \
      9 		cubeviz \
     10 		dmenu-bookmarks \
     11 		dmenu-dwm-sessionmanager \
     12 		dmenu-filepicker \
     13 		dmenu-screenshot \
     14 		dmenu-unmount \
     15 		dmenu-urlselect \
     16 		event \
     17 		feed \
     18 		ffmpeg-screenrecord \
     19 		ffmpeg-facecam \
     20 		mail-compose \
     21 		mergepdf \
     22 		notify \
     23 		open-file \
     24 		open-stdin \
     25 		open-url \
     26 		popup-cal12 \
     27 		popup-cal3 \
     28 		popup-terminal \
     29 		secret \
     30 		sel \
     31 		spawn \
     32 		status \
     33 		status-linux \
     34 		status-openbsd \
     35 		templess \
     36 		terminal \
     37 		trash \
     38 		urlgrep \
     39 		virename \
     40 		xedit \
     41 		xedit-filter \
     42 		xroot-update \
     43 		xwallpaper-random-notify
     44 
     45 all: install
     46 
     47 install:
     48 	for s in ${SCRIPTS}; do\
     49 		cp -f $$s ${DESTDIR}${PREFIX}/bin ; \
     50 		chmod 755 ${DESTDIR}${PREFIX}/bin/$$s ; \
     51 	done
     52 
     53 uninstall:
     54 	for s in ${SCRIPTS}; do rm -rf ${DESTDIR}${PREFIX}/bin/$$s ; done
     55 
     56 .PHONY: all install uninstall