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.
|
|
|
package("pcre2")
|
|
|
|
|
|
|
|
set_homepage("https://www.pcre.org/")
|
|
|
|
set_description("A Perl Compatible Regular Expressions Library")
|
|
|
|
|
|
|
|
set_urls("https://ftp.pcre.org/pub/pcre/pcre2-$(version).zip",
|
|
|
|
"ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre2-$(version).zip")
|
|
|
|
|
|
|
|
add_versions("10.23", "6301a525a8a7e63a5fac0c2fbfa0374d3eb133e511d886771e097e427707094a")
|
|
|
|
add_versions("10.30", "3677ce17854fffa68fce6b66442858f48f0de1f537f18439e4bd2771f8b4c7fb")
|
|
|
|
add_versions("10.31", "b4b40695a5347a770407d492c1749e35ba3970ca03fe83eb2c35d44343a5a444")
|
|
|
|
|
|
|
|
on_build(function (package)
|
|
|
|
os.vrun("./configure --prefix=%s", package:installdir())
|
|
|
|
os.vrun("make")
|
|
|
|
end)
|
|
|
|
|
|
|
|
on_install(function (package)
|
|
|
|
os.vrun("make install")
|
|
|
|
end)
|