diff options
| author | Isaac Freund <ifreund@ifreund.xyz> | 2020-06-05 13:48:07 +0200 |
|---|---|---|
| committer | Isaac Freund <ifreund@ifreund.xyz> | 2020-06-05 13:48:07 +0200 |
| commit | 51b00ac6a9058151861a9a00f6f22e8abe755d37 (patch) | |
| tree | 56ad5b6a5cc33cdb673d5e84cfeaaa376c24b8d7 /build.zig | |
| parent | 59d0fb7fbac1f62bf5fb806e1eb55a63fc6d2e79 (diff) | |
| download | river-51b00ac6a9058151861a9a00f6f22e8abe755d37.tar.gz river-51b00ac6a9058151861a9a00f6f22e8abe755d37.tar.xz | |
build: install man pages
No gzip, let distros compress if they want to
Diffstat (limited to 'build.zig')
| -rw-r--r-- | build.zig | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -25,6 +25,10 @@ pub fn build(b: *std.build.Builder) !void { const scan_protocols = ScanProtocolsStep.create(b); + // Install man pages, no gzip for now + b.installFile("doc/river.1", "share/man/man1/river.1"); + b.installFile("doc/riverctl.1", "share/man/man1/riverctl.1"); + { const river = b.addExecutable("river", "river/main.zig"); river.setTarget(target); |
