mirror of
https://github.com/terrapkg/packages.git
synced 2026-06-01 17:32:18 +00:00
3c3863caf9
* Add: Ghostty and Ghostty Tip * fix: maybe strip the binary? * Update anda/devs/ghostty/nightly/ghostty-nightly.spec Co-authored-by: madomado <madonuko@outlook.com> Signed-off-by: Gil <rockgrub@protonmail.com> * Update ghostty-nightly.spec Add: Provides Signed-off-by: Gil <rockgrub@protonmail.com> * Update ghostty-nightly.spec Signed-off-by: Gil <rockgrub@protonmail.com> * Add: .diff patches * Fix: autosetup Signed-off-by: Gil <rockgrub@protonmail.com> * fix update script * fix ghostty stable * Fix: Terminfo and shell integration should be their own packages (see: Kitty packaging) * Fix: What happened to my descriptions? * Fix: Installation and build deps for man pages, package deps, some cleanup, commit bump on Tip, enabled debug packages for Tip * Fix: Change libadwaita to an optional dep due to latest Ghostty commits (see: 5293fc9) --------- Signed-off-by: Gil <rockgrub@protonmail.com> Co-authored-by: madonuko <madonuko@outlook.com>
18 lines
489 B
Diff
18 lines
489 B
Diff
diff --git a/build.zig b/build.zig
|
|
index c3f7302..a0ecf25 100644
|
|
--- a/build.zig
|
|
+++ b/build.zig
|
|
@@ -295,11 +295,7 @@ pub fn build(b: *std.Build) !void {
|
|
.root_source_file = b.path("src/main.zig"),
|
|
.target = target,
|
|
.optimize = optimize,
|
|
- .strip = switch (optimize) {
|
|
- .Debug => false,
|
|
- .ReleaseSafe => false,
|
|
- .ReleaseFast, .ReleaseSmall => true,
|
|
- },
|
|
+ .strip = false,
|
|
}) else null;
|
|
|
|
// Exe
|