* add ed

* Update xmake.lua

* Update xmake.lua
pull/745/head
ruki 3 years ago committed by GitHub
parent 4cb17ecb0e
commit 3ce57d5d60
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 18
      packages/e/ed/xmake.lua

@ -0,0 +1,18 @@
package("ed")
set_kind("binary")
set_homepage("https://www.gnu.org/software/ed/ed.html")
set_description("Classic UNIX line editor")
set_license("GPL-3.0-or-later")
set_urls("https://github.com/xmake-mirror/ed/archive/refs/tags/$(version).tar.gz")
add_versions("1.17", "990129f9ebe21f0a1d880f2b71a33a3bf384eccae37c2dcd80419296f6bd02c6")
on_install("linux", "macosx", function (package)
import("package.tools.autoconf").install(package)
end)
on_test(function (package)
os.exec("ed --version")
end)
Loading…
Cancel
Save