Xinqi Bao's Git
projects
/
slstatus.git
/ diff
summary
|
log
|
commit
|
diff
|
tree
raw
|
patch
|
inline
| side by side (parent:
fd0bb71
)
added man page
author
Aaron Marcher <
[email protected]
>
Sat, 17 Sep 2016 20:51:49 +0000
(22:51 +0200)
committer
Aaron Marcher (drkhsh) <
[email protected]
>
Sat, 17 Sep 2016 20:51:49 +0000
(22:51 +0200)
Makefile
diff
|
blob
|
history
config.mk
diff
|
blob
|
history
diff --git
a/Makefile
b/Makefile
index
f884ae0
..
85c001f
100644
(file)
--- a/
Makefile
+++ b/
Makefile
@@
-47,9
+47,15
@@
install: all
@mkdir -p ${DESTDIR}${PREFIX}/bin
@cp -f ${NAME} ${DESTDIR}${PREFIX}/bin
@chmod 755 ${DESTDIR}${PREFIX}/bin/${NAME}
@mkdir -p ${DESTDIR}${PREFIX}/bin
@cp -f ${NAME} ${DESTDIR}${PREFIX}/bin
@chmod 755 ${DESTDIR}${PREFIX}/bin/${NAME}
+ @echo installing manual page to ${DESTDIR}${MANPREFIX}/man1
+ @mkdir -p ${DESTDIR}${MANPREFIX}/man1
+ @sed "s/VERSION/${VERSION}/g" < ${NAME}.1 > ${DESTDIR}${MANPREFIX}/man1/${NAME}.1
+ @chmod 644 ${DESTDIR}${MANPREFIX}/man1/${NAME}.1
uninstall:
@echo removing executable file from ${DESTDIR}${PREFIX}/bin
@rm -f ${DESTDIR}${PREFIX}/bin/${NAME}
uninstall:
@echo removing executable file from ${DESTDIR}${PREFIX}/bin
@rm -f ${DESTDIR}${PREFIX}/bin/${NAME}
+ @echo removing manual page from ${DESTDIR}${MANPREFIX}/man1
+ @rm -f ${DESTDIR}${MANPREFIX}/man1/${NAME}.1
.PHONY: all options clean dist install uninstall
.PHONY: all options clean dist install uninstall
diff --git
a/config.mk
b/config.mk
index
ded73aa
..
e29f054
100644
(file)
--- a/
config.mk
+++ b/
config.mk
@@
-1,4
+1,4
@@
-VERSION =
1
.0
+VERSION =
2
.0
PREFIX = /usr/local
MANPREFIX = ${PREFIX}/share/man
PREFIX = /usr/local
MANPREFIX = ${PREFIX}/share/man