mirror of
https://github.com/jedisct1/minisign.git
synced 2025-04-04 19:37:48 +03:00
Add build.zig file
This commit is contained in:
parent
f6965a0858
commit
52ccad8685
3 changed files with 29 additions and 5 deletions
15
README.md
15
README.md
|
@ -16,11 +16,22 @@ public key:
|
||||||
Compilation / installation
|
Compilation / installation
|
||||||
--------------------------
|
--------------------------
|
||||||
|
|
||||||
|
## Using [Zig](https://ziglang.org):
|
||||||
|
|
||||||
Dependencies:
|
Dependencies:
|
||||||
|
|
||||||
|
* [libsodium](https://libsodium.org/)
|
||||||
|
|
||||||
|
Compilation:
|
||||||
|
|
||||||
|
$ zig build -Drelease-small
|
||||||
|
|
||||||
|
## Using cmake and gcc or clang:
|
||||||
|
|
||||||
* [libsodium](https://libsodium.org/)
|
* [libsodium](https://libsodium.org/)
|
||||||
* cmake
|
* cmake
|
||||||
* pkg-config
|
* pkg-config
|
||||||
|
* gcc or clang
|
||||||
|
|
||||||
Compilation:
|
Compilation:
|
||||||
|
|
||||||
|
@ -50,10 +61,6 @@ Minisign is also available in chocolatey on Windows:
|
||||||
|
|
||||||
$ choco install minisign
|
$ choco install minisign
|
||||||
|
|
||||||
Minisign is also available on Ubuntu as a PPA:
|
|
||||||
|
|
||||||
$ [sudo] add-apt-repository ppa:dysfunctionalprogramming/minisign
|
|
||||||
|
|
||||||
Minisign is also available with docker:
|
Minisign is also available with docker:
|
||||||
|
|
||||||
$ docker run -i --rm jedisct1/minisign
|
$ docker run -i --rm jedisct1/minisign
|
||||||
|
|
17
build.zig
Normal file
17
build.zig
Normal file
|
@ -0,0 +1,17 @@
|
||||||
|
const std = @import("std");
|
||||||
|
|
||||||
|
pub fn build(b: *std.build.Builder) !void {
|
||||||
|
var target = b.standardTargetOptions(.{});
|
||||||
|
const mode = b.standardReleaseOptions();
|
||||||
|
|
||||||
|
const minisign = b.addExecutable("minisign", null);
|
||||||
|
minisign.setTarget(target);
|
||||||
|
minisign.setBuildMode(mode);
|
||||||
|
minisign.install();
|
||||||
|
minisign.linkLibC();
|
||||||
|
minisign.linkSystemLibrary("sodium");
|
||||||
|
|
||||||
|
minisign.addIncludeDir("src");
|
||||||
|
minisign.addSystemIncludeDir("/usr/local/include");
|
||||||
|
minisign.addCSourceFiles(&.{ "src/base64.c", "src/get_line.c", "src/helpers.c", "src/minisign.c" }, &.{});
|
||||||
|
}
|
|
@ -1,6 +1,5 @@
|
||||||
|
|
||||||
#include <assert.h>
|
#include <assert.h>
|
||||||
#include <getopt.h>
|
|
||||||
#include <inttypes.h>
|
#include <inttypes.h>
|
||||||
#include <limits.h>
|
#include <limits.h>
|
||||||
#include <stddef.h>
|
#include <stddef.h>
|
||||||
|
@ -10,6 +9,7 @@
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <time.h>
|
#include <time.h>
|
||||||
|
#include <unistd.h>
|
||||||
|
|
||||||
#include <sodium.h>
|
#include <sodium.h>
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue