blob: 0226badebfa20c03ad84fa7848f40cbd4ec7807c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
require 'formula'
class Sord < Formula
homepage 'http://drobilla.net/software/sord/'
url 'http://download.drobilla.net/sord-0.12.0.tar.bz2'
sha1 '8a1ae8c9f90bd0b3632841898c6500a8293d6ed2'
bottle do
cellar :any
sha1 "eab99e704b302d798559ab323fb9f43dbce43d73" => :yosemite
sha1 "30b02ca5adcf95f25925e8023c3a9fd222973b52" => :mavericks
sha1 "e5526acc4ac96fcbcce5be95f2e06ae93f08863f" => :mountain_lion
end
depends_on 'pkg-config' => :build
depends_on 'pcre'
depends_on 'serd'
def install
system "./waf", "configure", "--prefix=#{prefix}"
system "./waf"
system "./waf", "install"
end
end
|