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.
23 lines
946 B
23 lines
946 B
package("gnu-sed") |
|
|
|
set_kind("binary") |
|
set_homepage("https://www.gnu.org/software/sed/") |
|
set_description("GNU implementation of the famous stream editor.") |
|
set_license("GPL-3.0") |
|
|
|
set_urls("https://ftpmirror.gnu.org/sed/sed-$(version).tar.xz", |
|
"https://ftp.gnu.org/gnu/sed/sed-$(version).tar.xz") |
|
add_versions("4.8", "f79b0cfea71b37a8eeec8490db6c5f7ae7719c35587f21edb0617f370eeff633") |
|
add_versions("4.9", "6e226b732e1cd739464ad6862bd1a1aba42d7982922da7a53519631d24975181") |
|
|
|
on_install("macosx", "linux", function (package) |
|
local configs = {"--disable-dependency-tracking"} |
|
import("package.tools.autoconf").install(package, configs) |
|
end) |
|
|
|
on_test(function (package) |
|
os.vrun("sed --version") |
|
io.writefile("test.txt", "Hello world!") |
|
os.vrunv("sed", {"-i", "s/world/World/g", "test.txt"}) |
|
assert(io.readfile("test.txt") == "Hello World!") |
|
end)
|
|
|