add bash-completion, rename build directory back to canonical form after release action
1 parent e02418d commit 8d8ba3738c7cd8426eae9615711f63e907d0ef6f
@tundra tundra authored on 9 Jan 2018
Showing 1 changed file
View
4
makefile
# Stuff we want pip to install
PIPMODULES = ansible pew pythonz-bd
 
# Set of packages we want to include in the distribution tarball
MYTOOLS = emacs file-formula git htop joe nmap screen socat the_silver_searcher tmux tree vim
MYTOOLS = bash-completion emacs file-formula git htop joe nmap screen socat the_silver_searcher tmux tree vim
 
 
# ----------- Nothing below here should need changing ----------- #
 
 
bootstrap-release: tidyup
cd ${INSTALLDIR} && mv -v ${TOOLS} ${TOOLS}-bootstrap-${DATESTAMP}
cd ${INSTALLDIR} && tar -czvf ${EXPORTDIR}/${TOOLS}-bootstrap-${DATESTAMP}.tar.gz ${TOOLS}-bootstrap-${DATESTAMP}
cd ${INSTALLDIR} && mv -v ${TOOLS}-bootstrap-${DATESTAMP} ${TOOLS}
 
 
# Full tools set
 
 
full-release: tidyup
cd ${INSTALLDIR} && mv -v ${TOOLS} ${TOOLS}-${DATESTAMP}
cd ${INSTALLDIR} && tar -czvf ${EXPORTDIR}/${TOOLS}-${DATESTAMP}.tar.gz ${TOOLS}-${DATESTAMP}
cd ${INSTALLDIR} && mv -v ${TOOLS}-${DATESTAMP} ${TOOLS}
 
 
# Special cases and dependencies can go here