Codebase list rust-bzip2 / ff10aaf
rename manpages to have them coinstalable Sylvestre Ledru 3 years ago
2 changed file(s) with 4 addition(s) and 2 deletion(s). Raw diff Collapse all Expand all
44 crates.io. As we don't want to package them separately, we have to do
55 some voodoo magic to make it more maintainable but not following
66 the typical debcargo process.
7
8 To be coinstallable with GNU coinstallable, manpages are called rust-$PROGRAM.
79
810
911 Reminder
4345 We are following the version of the GNU version as we have some packages
4446 having an explicit minimal dep (ex: initramfs-tools-core, xinit, initscripts)
4547
46 -- Sylvestre Ledru <sylvestre@debian.org>, Sat, 16 Jan 2021 19:33:37 +0100
48 -- Sylvestre Ledru <sylvestre@debian.org>, Sun, 17 Jan 2021 15:19:03 +0100
1515 CARGO_HOME=$(shell pwd)/debian/cargo_home DESTDIR=$(CURDIR)/debian/tmp/ make install
1616 for f in $(CURDIR)/debian/tmp/usr/local/bin/*; do \
1717 filename=$$(basename $$f); \
18 help2man $$f > docs/$$filename.1; \
18 help2man $$f > docs/rust-$$filename.1; \
1919 done