homebrew-core/Formula/libcello.rb
sakkaku 75826f22aa libcello 1.1.7
The 1.1.2 package did not build.  1.1.7 incorporates changes to the build system that should now build cleanly (on OSX) going forward.

Closes Homebrew/homebrew#25722.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2014-01-08 08:12:38 +00:00

13 lines
338 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'
def install
system "make", "check"
system "make", "install", "PREFIX=#{prefix}"
end
end