5de63f968f
http://drobilla.net/software/sratom/ Signed-off-by: Adam Vandenberg <flangy@gmail.com>
19 lines
425 B
Ruby
19 lines
425 B
Ruby
require 'formula'
|
|
|
|
class Sratom < Formula
|
|
homepage 'http://drobilla.net/software/sratom/'
|
|
url 'http://download.drobilla.net/sratom-0.4.0.tar.bz2'
|
|
sha1 '898ef54df92785a2cfe2787ff2002e0b713044fd'
|
|
|
|
depends_on 'pkg-config' => :build
|
|
depends_on 'lv2'
|
|
depends_on 'serd'
|
|
depends_on 'sord'
|
|
|
|
def install
|
|
system "./waf", "configure", "--prefix=#{prefix}"
|
|
system "./waf"
|
|
system "./waf", "install"
|
|
end
|
|
|
|
end
|