Checkpoint

This commit is contained in:
2026-08-02 18:30:34 +00:00
parent 596af4ed80
commit 6c33bcfb27
41 changed files with 6360 additions and 1 deletions
+19
View File
@@ -0,0 +1,19 @@
[package]
name = "test-package"
version = "0.1.0"
description = "A package for testing the Nye package manager."
architectures = ["x86", "x86_64"]
[[expose.bin]]
name = "shared-binary"
[[expose.bin]]
name = "exposed-binary"
[[expose.bin]]
name = "exposed-binary-x86"
architectures = ["x86"]
[[expose.bin]]
name = "exposed-binary-x86_64"
architectures = ["x86_64"]
@@ -0,0 +1,2 @@
#!/bin/sh
echo "This binary is shared across all architectures."
@@ -0,0 +1,2 @@
#!/bin/sh
echo "Hello from the test Nye package for the x86 architecture!"
@@ -0,0 +1,2 @@
#!/bin/sh
echo "Hello from the test Nye package for the x86 architecture! This binary's name is arch-specific."
@@ -0,0 +1,2 @@
#!/bin/sh
echo "This binary for the x86 architecture is not exposed."
@@ -0,0 +1,2 @@
#!/bin/sh
echo "Hello from the test Nye package for the x86_64 architecture!"
@@ -0,0 +1,2 @@
#!/bin/sh
echo "Hello from the test Nye package for the x86_64 architecture! This binary's name is arch-specific."
@@ -0,0 +1,2 @@
#!/bin/sh
echo "This binary for the x86_64 architecture is not exposed."