mirror of
https://git.pwmt.org/pwmt/zathura.git
synced 2024-11-15 03:13:46 +01:00
Build zathurarc.5 in install target and update README
This commit is contained in:
parent
6fa65e11bb
commit
f4f6d6da7f
7
Makefile
7
Makefile
@ -65,7 +65,7 @@ dist: clean
|
|||||||
@mkdir -p ${PROJECT}-${VERSION}
|
@mkdir -p ${PROJECT}-${VERSION}
|
||||||
@cp -R LICENSE Makefile config.mk config.def.h README \
|
@cp -R LICENSE Makefile config.mk config.def.h README \
|
||||||
${PROJECT}.1 ${SOURCE} ${PROJECT}-${VERSION} \
|
${PROJECT}.1 ${SOURCE} ${PROJECT}-${VERSION} \
|
||||||
${PROJECT}.desktop
|
${PROJECT}.desktop ${PROJECT}rst.5.rst
|
||||||
@tar -cf ${PROJECT}-${VERSION}.tar ${PROJECT}-${VERSION}
|
@tar -cf ${PROJECT}-${VERSION}.tar ${PROJECT}-${VERSION}
|
||||||
@gzip ${PROJECT}-${VERSION}.tar
|
@gzip ${PROJECT}-${VERSION}.tar
|
||||||
@rm -rf ${PROJECT}-${VERSION}
|
@rm -rf ${PROJECT}-${VERSION}
|
||||||
@ -78,6 +78,10 @@ install: all
|
|||||||
@echo installing manual page
|
@echo installing manual page
|
||||||
@mkdir -p ${DESTDIR}${MANPREFIX}/man1
|
@mkdir -p ${DESTDIR}${MANPREFIX}/man1
|
||||||
@sed "s/VERSION/${VERSION}/g" < ${PROJECT}.1 > ${DESTDIR}${MANPREFIX}/man1/${PROJECT}.1
|
@sed "s/VERSION/${VERSION}/g" < ${PROJECT}.1 > ${DESTDIR}${MANPREFIX}/man1/${PROJECT}.1
|
||||||
|
@if which rst2man > /dev/null ; then \
|
||||||
|
mkdir -p ${DESTDIR}${MANPREFIX}/man5 ; \
|
||||||
|
rst2man ${PROJECT}rc.5.rst > ${DESTDIR}${MANPREFIX}/man5/${PROJECT}rc.5 ; \
|
||||||
|
fi
|
||||||
@chmod 644 ${DESTDIR}${MANPREFIX}/man1/${PROJECT}.1
|
@chmod 644 ${DESTDIR}${MANPREFIX}/man1/${PROJECT}.1
|
||||||
@mkdir -p ${DESTDIR}${DESKTOPPREFIX}
|
@mkdir -p ${DESTDIR}${DESKTOPPREFIX}
|
||||||
@echo installing desktop file
|
@echo installing desktop file
|
||||||
@ -88,5 +92,6 @@ uninstall:
|
|||||||
@rm -f ${DESTDIR}${PREFIX}/bin/${PROJECT}
|
@rm -f ${DESTDIR}${PREFIX}/bin/${PROJECT}
|
||||||
@echo removing manual page
|
@echo removing manual page
|
||||||
@rm -f ${DESTDIR}${MANPREFIX}/man1/${PROJECT}.1
|
@rm -f ${DESTDIR}${MANPREFIX}/man1/${PROJECT}.1
|
||||||
|
@rm -f ${DESTDIR}${MANPREFIX}/man5/${PROJECT}rc.5
|
||||||
@echo removing desktop file
|
@echo removing desktop file
|
||||||
@rm -f ${DESTDIR}${DESKTOPPREFIX}/${PROJECT}.desktop
|
@rm -f ${DESTDIR}${DESKTOPPREFIX}/${PROJECT}.desktop
|
||||||
|
3
README
3
README
@ -12,6 +12,9 @@ glib2 (2.22.4)
|
|||||||
Please note that you need to have a working pkg-config installation
|
Please note that you need to have a working pkg-config installation
|
||||||
and that the Makefile is only compatible with GNU make.
|
and that the Makefile is only compatible with GNU make.
|
||||||
|
|
||||||
|
And also note that rst2man from python-docutils is needed to build
|
||||||
|
zathurarc.5. If it is not installed, zathurarc.5 won't be built.
|
||||||
|
|
||||||
Configuration
|
Configuration
|
||||||
-------------
|
-------------
|
||||||
You can modify some parts of zathura by editing the config.h file
|
You can modify some parts of zathura by editing the config.h file
|
||||||
|
Loading…
Reference in New Issue
Block a user