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
2 changed files with 2 additions and 24 deletions
-22
View File
@@ -1,22 +0,0 @@
import os
from lib import cpp
from lib.make import *
version("2.0")
source_url("https://www.invisible-island.net/archives/byacc/byacc-2.0.tgz")
def build():
cpp.configure([f"--prefix={get_prefix('byacc')}", "--enable-btyacc"])
cpp.make()
cpp.make_install()
os.rename("bin/yacc", "bin/byacc")
on_build(build)
package("byacc")
dep("semi-libc @same-arch")
cpp.use_auto_pack(["bin", "lib", "dev"])
link("bin/byacc", "/bin/yacc")
+2 -2
View File
@@ -1,8 +1,8 @@
from lib import rust
from lib.make import *
version("0.1.1")
source_url("https://github.com/uutils/sed/releases/download/0.1.1/source.tar.gz")
version("0.1.2-rc.1")
source_url("https://github.com/uutils/sed/archive/refs/tags/latest-commit.tar.gz")
def build():