serialosc 1.2

Closes Homebrew/homebrew#17059.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
master
Myles Borins 2013-01-13 17:16:47 -08:00 committed by Adam Vandenberg
parent dc182fc3ba
commit 84d9047b53
1 changed files with 19 additions and 0 deletions

19
Formula/serialosc.rb Normal file
View File

@ -0,0 +1,19 @@
require 'formula'
class Serialosc < Formula
homepage 'http://docs.monome.org/doku.php?id=app:serialosc'
url 'https://github.com/monome/serialosc/tarball/1.2'
sha1 'a5eb073df2e4882baf7adb3ae35a92b861652977'
head 'https://github.com/monome/serialosc.git'
depends_on 'liblo'
depends_on 'confuse'
depends_on 'libmonome'
def install
system "./waf", "configure", "--prefix=#{prefix}"
system "./waf build"
system "./waf install"
end
end