Skip to content

Instantly share code, notes, and snippets.

@snmsts
Created October 19, 2014 14:51
Show Gist options
  • Save snmsts/0d76116968c61ac7cbd8 to your computer and use it in GitHub Desktop.
Save snmsts/0d76116968c61ac7cbd8 to your computer and use it in GitHub Desktop.
homebrew test
require "formula"
class Roswell < Formula
homepage ""
url "https://github.com/snmsts/roswell/archive/v0.0.2.11.tar.gz"
version '0.0.2.11'
sha1 "02154cf0ea908ccc52af0382c730f3f7304c0c1f"
depends_on 'libarchive'
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
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment