21 lines
589 B
Ruby
21 lines
589 B
Ruby
require 'formula'
|
|
|
|
class Libcello < Formula
|
|
homepage 'http://libcello.org/'
|
|
head 'https://github.com/orangeduck/libCello.git'
|
|
url 'http://libcello.org/static/libCello-1.1.7.tar.gz'
|
|
sha1 'e00e92ccdaf16c3443e0c75421b6cc73b1f727b1'
|
|
|
|
bottle do
|
|
cellar :any
|
|
revision 1
|
|
sha1 "d208cfa93fcd658a225dd46b0eba986f9a30e474" => :yosemite
|
|
sha1 "f95afa9fb94b09e9c2102932792288fc2352d091" => :mavericks
|
|
sha1 "507985cc79584569e6c04dfb9b9772a97573b2a9" => :mountain_lion
|
|
end
|
|
|
|
def install
|
|
system "make", "check"
|
|
system "make", "install", "PREFIX=#{prefix}"
|
|
end
|
|
end
|