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.
17 lines
584 B
17 lines
584 B
package("gperf") |
|
|
|
set_kind("binary") |
|
set_homepage("https://www.gnu.org/software/gperf") |
|
set_description("Perfect hash function generator.") |
|
|
|
set_urls("https://ftp.gnu.org/gnu/gperf/gperf-$(version).tar.gz", |
|
"https://ftpmirror.gnu.org/gperf/gperf-$(version).tar.gz") |
|
add_versions("3.1", "588546b945bba4b70b6a3a616e80b4ab466e3f33024a352fc2198112cdbb3ae2") |
|
|
|
on_install("macosx", "linux", function (package) |
|
import("package.tools.autoconf").install(package) |
|
end) |
|
|
|
on_test(function (package) |
|
os.vrun("gperf --version") |
|
end)
|
|
|