roswell 0.0.4.57 (new formula)
Closes #46. Signed-off-by: Andrew Janke <andrew@apjanke.net>
This commit is contained in:
parent
d017453539
commit
9baa9e73ab
1 changed files with 26 additions and 0 deletions
26
Formula/roswell.rb
Normal file
26
Formula/roswell.rb
Normal file
|
@ -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
|
Loading…
Reference in a new issue