diff --git a/Formula/roswell.rb b/Formula/roswell.rb new file mode 100644 index 0000000000..7d615eef65 --- /dev/null +++ b/Formula/roswell.rb @@ -0,0 +1,26 @@ +class Roswell < Formula + desc "Lisp installer and launcher for major environments" + homepage "https://github.com/roswell/roswell" + url "https://github.com/roswell/roswell/archive/v0.0.4.57.tar.gz" + sha256 "05985f10c8577bba664f6c5db3baa60d41704d76702609107599689504a93fd0" + head "https://github.com/roswell/roswell.git" + + depends_on "automake" => :build + depends_on "autoconf" => :build + + def install + system "./bootstrap" + system "./configure", "--disable-dependency-tracking", + "--disable-silent-rules", + "--enable-manual-generation", + "--enable-html-generation", + "--prefix=#{prefix}" + system "make", "install" + end + + test do + ENV["ROSWELL_HOME"] = testpath + system bin/"ros", "init" + File.exist? testpath/".roswell/config" + end +end