blob: 96b7b1bf707e579573f08cc6697a32c446b1c183 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
require 'formula'
class Serd < Formula
homepage 'http://drobilla.net/software/serd/'
url 'http://download.drobilla.net/serd-0.18.2.tar.bz2'
sha1 '9472be8d6f407affca5c8fa3125a5fbe49af967e'
depends_on 'pkg-config' => :build
def install
system "./waf", "configure", "--prefix=#{prefix}"
system "./waf"
system "./waf", "install"
end
end
|