Compare commits

...

4 commits

Author SHA1 Message Date
c56b470184 Update Makefile
Some checks are pending
sourcezap / shellcheck (push) Waiting to run
2024-07-19 17:14:23 -03:00
59c799c047 Add libexec/sourcezap/functions/ 2024-07-19 17:00:03 -03:00
dfb5fcc92a Remove unused source of functions.sh 2024-07-19 16:55:43 -03:00
7c10eb0012 RELEASENOTES.txt => RELEASENOTES 2024-07-19 16:52:19 -03:00
10 changed files with 9 additions and 23 deletions

View file

@ -5,13 +5,9 @@ LIBEXECDIR = $(PREFIX)/libexec/sourcezap
SHAREDIR = $(PREFIX)/share/sourcezap
install:
install -d $(BINDIR) $(LIBEXECDIR) $(LIBEXECDIR)/commands $(LIBEXECDIR)/utils $(SHAREDIR) $(MANDIR)
install -m 0755 bin/sourcezap $(BINDIR)
install -m 0755 bin/setup-sourcezap $(BINDIR)
install -m 0755 libexec/sourcezap/commands/* $(LIBEXECDIR)/commands
install -m 0755 libexec/sourcezap/utils/* $(LIBEXECDIR)/utils
install -m 0644 share/sourcezap/* $(SHAREDIR)
install -m 0644 man/man8/sourcezap.8 $(MANDIR)
@find bin/ libexec/ share/ -type d -exec install -v -d $(PREFIX)/"{}" \;
@find bin/ libexec/ -type f -exec install -v -m 0755 "{}" $(PREFIX)/"{}" \;
@find share/ man/ -type f -exec install -v -m 0644 "{}" $(PREFIX)/"{}" \;
deinstall:
rm $(BINDIR)/sourcezap
@ -21,6 +17,4 @@ deinstall:
rm -rf $(SHAREDIR)
shellcheck:
shellcheck bin/*
shellcheck libexec/sourcezap/utils/*
shellcheck libexec/sourcezap/commands/*
find bin/ libexec/ -type f -exec shellcheck "{}" \;

View file

@ -11,7 +11,7 @@ branch=$2
##
# functions
. "${libexec}"/functions.sh
. "${libexec}"/functions/print.sh
##
# main

View file

@ -12,7 +12,7 @@ branch=$3
##
# functions
. "${libexec}"/functions.sh
. "${libexec}"/functions/print.sh
##
# main

View file

@ -13,7 +13,7 @@ revfile=$3
##
# functions
. "${libexec}"/functions.sh
. "${libexec}"/functions/print.sh
perform_update()
{

View file

@ -10,7 +10,7 @@ gitdir=$1
##
# functions
. "${libexec}"/functions.sh
. "${libexec}"/functions/print.sh
##
# main

View file

@ -10,7 +10,7 @@ installdir=$2
##
# functions
. "${libexec}"/functions.sh
. "${libexec}"/functions/print.sh
erase()
{

View file

@ -9,10 +9,6 @@ git="${libexec}"/utils/git/run
gitdir=$1
commit=$2
##
# functions
. "${libexec}"/functions.sh
##
# main
cd "${gitdir}"

View file

@ -9,10 +9,6 @@ git="${libexec}"/utils/git/run
gitdir=$1
commit=$2
##
# functions
. "${libexec}"/functions.sh
##
# main
cd "${gitdir}"