Properly install man pages.

This commit is contained in:
David Given 2017-01-07 22:38:30 +01:00
parent 9945b019d2
commit cca6171e55
3 changed files with 4 additions and 56 deletions

View file

@ -15,7 +15,7 @@ local function simpleprogram(name)
name = name.."-pkg",
map = {
["$(INSDIR)/bin/"..name] = "+"..name,
["$(PLATIND)/man/man1/"..name..".1"] = "./"..name..".1",
["$(INSDIR)/share/man/man1/"..name..".1"] = "./"..name..".1",
}
}
end

View file

@ -17,6 +17,6 @@ installable {
name = "pkg",
map = {
["$(INSDIR)/bin/aal"] = "+aal",
["$(PLATIND)/man/man1/aal.1"] = "./aal.1"
["$(INSDIR)/share/man/man1/aal.1"] = "./aal.1"
}
}

View file

@ -41,59 +41,7 @@ installable {
["$(PLATDEP)/em_encode"] = "+encode",
["$(PLATDEP)/em_decode"] = "+decode",
["$(INSDIR)/bin/esize"] = "+esize",
["$(PLATIND)/man/man1/esize.1"] = "./esize.1",
["$(PLATIND)/man/man6/em_decode.6"] = "./em_decode.6"
["$(INSDIR)/share/man/man1/esize.1"] = "./esize.1",
["$(INSDIR)/share/man/man6/em_decode.6"] = "./em_decode.6"
}
}
--[[
D := util/misc
define build-misc-impl
$(call reset)
$(call cfile, $D/esize.c)
$(call cprogram, $(BINDIR)/esize)
$(call installto, $(INSDIR)/bin/esize)
$(call reset)
$(eval q := $D/esize.1)
$(call installto, $(INSDIR)/share/man/man1/esize.1)
$(call reset)
$(eval objdir := encode)
$(call cfile, $D/convert.c)
$(eval $q: $(INCDIR)/em_comp.h $(INCDIR)/em_codeEK.h)
$(call rawfile, $(LIBREAD_EMEV))
$(call rawfile, $(LIBEMK))
$(call rawfile, $(LIBEM_DATA))
$(call rawfile, $(LIBALLOC))
$(call rawfile, $(LIBPRINT))
$(call rawfile, $(LIBSTRING))
$(call rawfile, $(LIBSYSTEM))
$(call cprogram, $(BINDIR)/em_encode)
$(call installto, $(PLATDEP)/em_encode)
$(eval EM_ENCODE := $o)
$(eval ACK_CORE_TOOLS += $o)
$(call reset)
$(eval objdir := decode)
$(call cfile, $D/convert.c)
$(eval $q: $(INCDIR)/em_comp.h $(INCDIR)/em_codeEK.h)
$(call rawfile, $(LIBREAD_EMKV))
$(call rawfile, $(LIBEME))
$(call rawfile, $(LIBEM_DATA))
$(call rawfile, $(LIBALLOC))
$(call rawfile, $(LIBPRINT))
$(call rawfile, $(LIBSTRING))
$(call rawfile, $(LIBSYSTEM))
$(call cprogram, $(BINDIR)/em_decode)
$(call installto, $(PLATDEP)/em_decode)
$(eval EM_DECODE := $o)
$(call reset)
$(eval q := $D/em_decode.6)
$(call installto, $(INSDIR)/share/man/man6/em_decode.6)
endef
$(eval $(build-misc-impl))
--]]