75826f22aa
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>
13 lines
338 B
Ruby
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
|