aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/libcello.rb
blob: c412bdcb80837762be33dd6999a16c49cd2a4767 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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