Compare commits

..
1 Commits
Author SHA1 Message Date
sisungo 3b78c450c5 feat: add package byacc
Signed-off-by: sisungo <[email protected]>
2026-07-07 08:03:32 +08:00
2 changed files with 24 additions and 2 deletions
+22
View File
@@ -0,0 +1,22 @@
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.2-rc.1")
source_url("https://github.com/uutils/sed/archive/refs/tags/latest-commit.tar.gz")
version("0.1.1")
source_url("https://github.com/uutils/sed/releases/download/0.1.1/source.tar.gz")
def build():