From 7d10ee4c750f7bfb0646ddcc6cceefb04dc27c38 Mon Sep 17 00:00:00 2001 From: Yves Biener Date: Sat, 14 Oct 2023 11:59:49 +0200 Subject: [PATCH] add(build): include man page in installation build step --- build.zig | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build.zig b/build.zig index 7958a52..3763541 100644 --- a/build.zig +++ b/build.zig @@ -23,6 +23,8 @@ pub fn build(b: *std.Build) void { .target = target, .optimize = optimize, }); + // install man pages along executable + b.installFile("doc/sp.1", "man/man1/sp.1"); // This declares intent for the executable to be installed into the // standard location when the user invokes the "install" step (the default