package An official xmake package repository
https://xrepo.xmake.io/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
1.2 KiB
41 lines
1.2 KiB
package("bison") |
|
|
|
set_kind("binary") |
|
set_homepage("https://www.gnu.org/software/bison/") |
|
set_description("A general-purpose parser generator.") |
|
set_license("GPL-3.0") |
|
|
|
if not is_plat("windows") then |
|
add_urls("http://ftp.gnu.org/gnu/bison/bison-$(version).tar.gz") |
|
end |
|
|
|
add_versions("3.7.4", "fbabc7359ccd8b4b36d47bfe37ebbce44805c052526d5558b95eda125d1677e2") |
|
add_versions("3.7.6", "69dc0bb46ea8fc307d4ca1e0b61c8c355eb207d0b0c69f4f8462328e74d7b9ea") |
|
add_versions("3.8.2", "06c9e13bdf7eb24d4ceb6b59205a4f67c2c7e7213119644430fe82fbd14a0abb") |
|
|
|
if is_plat("windows") then |
|
add_deps("winflexbison") |
|
elseif is_plat("linux", "bsd") then |
|
add_deps("m4") |
|
end |
|
|
|
on_load(function (package) |
|
if package:is_plat("windows") then |
|
-- handled by winflexbison |
|
return |
|
end |
|
package:addenv("PATH", "bin") |
|
end) |
|
|
|
on_install(function (package) |
|
if package:is_plat("windows") then |
|
-- handled by winflexbison |
|
return |
|
end |
|
import("package.tools.autoconf").install(package) |
|
os.rm(package:installdir("share", "doc")) |
|
end) |
|
|
|
on_test(function (package) |
|
os.vrun("bison -h") |
|
end)
|
|
|