blob: 98ea81539c4e40fdf4022591b5cbdd7da15ebf76 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
require 'formula'
class Serd < Formula
homepage 'http://drobilla.net/software/serd/'
url 'http://download.drobilla.net/serd-0.18.2.tar.bz2'
sha1 '9472be8d6f407affca5c8fa3125a5fbe49af967e'
bottle do
cellar :any
sha1 "cf8e4e7cba72fb4d05de1a6f75090aefb24c19a6" => :yosemite
sha1 "734bc7cdd91ec765dcfa07404e0635c915fa52f8" => :mavericks
sha1 "45ff9722f3d3f774c558c2b4dde77f811c596d0a" => :mountain_lion
end
depends_on 'pkg-config' => :build
def install
system "./waf", "configure", "--prefix=#{prefix}"
system "./waf"
system "./waf", "install"
end
end
|