mirror of
https://github.com/roswell/roswell.git
synced 2026-09-10 07:16:17 -04:00
20 lines
443 B
Plaintext
20 lines
443 B
Plaintext
class Roswell < Formula
|
|
homepage "https://github.com/roswell/roswell/"
|
|
url "<% @var url %>"
|
|
sha256 "<% @var sha256 %>"
|
|
<% @var version %>
|
|
head "https://github.com/roswell/roswell.git"
|
|
|
|
depends_on "autoconf" => :build
|
|
depends_on "automake" => :build
|
|
def install
|
|
system "sh", "bootstrap"
|
|
system "./configure", "--prefix=#{prefix}"
|
|
system "make", "install"
|
|
end
|
|
|
|
test do
|
|
system bin/"ros", "--version"
|
|
end
|
|
end
|