serd 0.18.2

http://drobilla.net/software/serd/

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
This commit is contained in:
Ben Swift 2013-01-14 10:41:28 +11:00 committed by Adam Vandenberg
parent 25ae7307e1
commit b292f3bc17

15
Formula/serd.rb Normal file
View file

@ -0,0 +1,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