authorgravatar for hello@nektro.netMeghan Denny <hello@nektro.net> 2024-10-15 02:33:18 -07:00
committergravatar for hello@nektro.netMeghan Denny <hello@nektro.net> 2024-10-15 02:33:18 -07:00
log2a12c9fad7ac8ff82a58aeb220ebe55bbfa66b25
treecbc40e7ad9adbf6b8837bb5522784f30fc9457af

initial commit


8 files changed, 57 insertions(+), 0 deletions(-)

.gitattributes created+3
...@@ -0,0 +1,3 @@
1* text=auto
2*.zig text eol=lf
3zigmod.* text eol=lf
.gitignore created+6
...@@ -0,0 +1,6 @@
1.zig-cache
2zig-out
3.zigmod
4deps.zig
5files.zig
6zigmod.lock
LICENSE created+21
...@@ -0,0 +1,21 @@
1MIT License
2
3Copyright (c) 2024 Meghan Denny
4
5Permission is hereby granted, free of charge, to any person obtaining a copy
6of this software and associated documentation files (the "Software"), to deal
7in the Software without restriction, including without limitation the rights
8to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9copies of the Software, and to permit persons to whom the Software is
10furnished to do so, subject to the following conditions:
11
12The above copyright notice and this permission notice shall be included in all
13copies or substantial portions of the Software.
14
15THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21SOFTWARE.
build.zig created+16
...@@ -0,0 +1,16 @@
1const std = @import("std");
2const deps = @import("./deps.zig");
3
4pub fn build(b: *std.Build) void {
5 const target = b.standardTargetOptions(.{});
6 const mode = b.option(std.builtin.Mode, "mode", "") orelse .Debug;
7
8 const lib = b.addStaticLibrary(.{
9 .name = "icu",
10 .root_source_file = b.path("src/main.zig"),
11 .target = target,
12 .optimize = mode,
13 });
14 deps.addAllTo(lib);
15 b.installArtifact(lib);
16}
licenses.txt created+3
...@@ -0,0 +1,3 @@
1MIT:
2= https://spdx.org/licenses/MIT
3- This
src/main.zig created+1
...@@ -0,0 +1 @@
1const std = @import("std");
src/root.zig created+1
...@@ -0,0 +1 @@
1const std = @import("std");
zigmod.yml created+6
...@@ -0,0 +1,6 @@
1id: 47zkmuv464zqas12rhzf3y6im0u74rwbsqtdo4unbcw7wo2a
2name: icu
3main: src/root.zig
4license: MIT
5description: An implementation of International Components for Unicode in only Zig
6dependencies: