blob: 7dad46ed115a14f737b56a6dd12d59a37ce10f13 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
require 'formula'
class Libcello < Formula
homepage 'http://libcello.org/'
head 'https://github.com/orangeduck/libCello.git'
url 'http://libcello.org/static/libCello-1.1.2.tar.gz'
sha1 '48140f4e42c097367e7dd4fee9b911b25b6c9e6c'
def install
system "make", "check"
system "make", "install", "PREFIX=#{prefix}"
end
end
|