aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/serd.rb15
1 files changed, 15 insertions, 0 deletions
diff --git a/Library/Formula/serd.rb b/Library/Formula/serd.rb
new file mode 100644
index 000000000..96b7b1bf7
--- /dev/null
+++ b/Library/Formula/serd.rb
@@ -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