diff options
| author | Myles Borins | 2013-01-13 17:16:47 -0800 |
|---|---|---|
| committer | Adam Vandenberg | 2013-01-14 09:46:51 -0800 |
| commit | cbc1ec6b96891a636c00da27b5e7a6fc235486a6 (patch) | |
| tree | 613289b186e40e96e803522ce3e9af43e6cb24b8 /Library/Formula | |
| parent | 8bb188fe6128f3bf2bfc32c33047196e94f7e645 (diff) | |
| download | homebrew-cbc1ec6b96891a636c00da27b5e7a6fc235486a6.tar.bz2 | |
serialosc 1.2
Closes #17059.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/serialosc.rb | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/Library/Formula/serialosc.rb b/Library/Formula/serialosc.rb new file mode 100644 index 000000000..46957373e --- /dev/null +++ b/Library/Formula/serialosc.rb @@ -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 |
