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.
33 lines
1.5 KiB
33 lines
1.5 KiB
package("automake") |
|
|
|
set_kind("binary") |
|
set_homepage("https://www.gnu.org/software/automake/") |
|
set_description("A tool for automatically generating Makefile.in files compliant with the GNU Coding Standards.") |
|
|
|
add_urls("https://ftpmirror.gnu.org/gnu/automake/automake-$(version).tar.gz", |
|
"https://ftp.gnu.org/gnu/automake/automake-$(version).tar.gz", |
|
"https://mirrors.ustc.edu.cn/gnu/automake/automake-$(version).tar.gz") |
|
add_versions("1.16.5", "07bd24ad08a64bc17250ce09ec56e921d6343903943e99ccf63bbf0705e34605") |
|
add_versions("1.16.4", "8a0f0be7aaae2efa3a68482af28e5872d8830b9813a6a932a2571eac63ca1794") |
|
add_versions("1.16.1", "608a97523f97db32f1f5d5615c98ca69326ced2054c9f82e65bade7fc4c9dea8") |
|
add_versions("1.15.1", "988e32527abe052307d21c8ca000aa238b914df363a617e38f4fb89f5abf6260") |
|
add_versions("1.9.6", "e6d3030dd3f7a07ee2075da5f77864a3cc3e78c5bf76bb48df23dbe3d6ba13b9") |
|
add_versions("1.9.5", "68712753fcb756f3707b7da554917afb348450eb8530cae3b623a067078596fd") |
|
|
|
if is_host("linux") then |
|
add_extsources("apt::automake", "pacman::automake") |
|
end |
|
|
|
add_deps("autoconf") |
|
|
|
on_install("@macosx", "@linux", "@bsd", function (package) |
|
import("package.tools.autoconf").install(package) |
|
io.writefile(path.join(package:installdir("share", "aclocal"), "dirlist"), [[ |
|
/usr/local/share/aclocal |
|
/usr/share/aclocal |
|
]]) |
|
end) |
|
|
|
on_test(function (package) |
|
os.vrun("automake --version") |
|
end)
|
|
|