commit 47337eacc4e1638fd5263581a98b2d2cc9dd0d83 parent 3d23e1f5c0302e8e84551b21aa1c41a6782e0de2 Author: Cem Keylan <cem@ckyln.com> Date: Fri, 24 Jul 2020 17:11:04 +0300 tools: move to src Diffstat:
14 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/Makefile b/Makefile @@ -17,13 +17,13 @@ clean: rm -f ${BIN} ${OBJ} install: all - for bin in tools/* ${BIN} contrib/*; do \ + for bin in src/* ${BIN} contrib/*; do \ install -Dm755 $${bin} ${DESTDIR}${BINDIR}/$${bin##*/}; done for man in man/*.1; do install -Dm644 $${man} ${DESTDIR}${MAN1}/$${man##*/}; done for doc in doc/*; do install -Dm644 $${doc} ${DESTDIR}${CPTDOC}/$${doc##*/}; done uninstall: - for bin in ${BIN} tools/* contrib/*; do \ + for bin in ${BIN} src/* contrib/*; do \ rm -f ${DESTDIR}${BINDIR}/$${bin##*/}; done for man in man/*; do rm -f ${DESTDIR}${MAN1}/$${man##*/}; done rm -rf ${DESTDIR}${CPTDOC} diff --git a/README b/README @@ -21,4 +21,4 @@ Directory Structure contrib/ -- for Shell scripts that wrap around kiss. doc/ -- for documentation. man/ -- for manual pages. - tools/ -- for the tools that make up the package manager. + src/ -- for the tools that make up the package manager. diff --git a/tools/cpt b/src/cpt diff --git a/tools/cpt-alternatives b/src/cpt-alternatives diff --git a/tools/cpt-build b/src/cpt-build diff --git a/tools/cpt-checksum b/src/cpt-checksum diff --git a/tools/cpt-download b/src/cpt-download diff --git a/tools/cpt-fetch b/src/cpt-fetch diff --git a/tools/cpt-install b/src/cpt-install diff --git a/tools/cpt-lib b/src/cpt-lib diff --git a/tools/cpt-list b/src/cpt-list diff --git a/tools/cpt-remove b/src/cpt-remove diff --git a/tools/cpt-search b/src/cpt-search diff --git a/tools/cpt-update b/src/cpt-update