Compare commits

..
1 Commits
Author SHA1 Message Date
sisungo b1fb1a5157 feat: update sed to 0.1.2-rc.1
Signed-off-by: sisungo <[email protected]>
2026-07-06 14:30:16 +08:00
+5 -13
View File
@@ -1,24 +1,16 @@
import subprocess
from lib import rust
from lib.make import *
version("15.1.1")
source_url("https://gitea.semilabs.org/semios/sed/archive/v15.1.1.tar.gz")
version("0.1.2-rc.1")
source_url("https://github.com/uutils/sed/archive/refs/tags/latest-commit.tar.gz")
def build():
subprocess.run(["./build.sh"])
rust.build()
on_build(build)
def pack_sed(composer):
composer.makedir("bin")
composer.addfile("sed", "bin/sed")
package("sed")
dep("semi-libc @same-arch")
dep("libpcre2 @same-arch")
on_pack(pack_sed)
rust.use_auto_pack(["bin"])