diff options
| author | Myles Borins | 2013-01-13 17:17:24 -0800 |
|---|---|---|
| committer | Adam Vandenberg | 2013-01-14 09:46:38 -0800 |
| commit | 8bb188fe6128f3bf2bfc32c33047196e94f7e645 (patch) | |
| tree | e7c02c262a500c81edad42d4b75f25543f2c5f36 /Library/Formula | |
| parent | 883b52cfca2985762b604f58abc0f6db8649d4fd (diff) | |
| download | homebrew-8bb188fe6128f3bf2bfc32c33047196e94f7e645.tar.bz2 | |
libmonome 1.2
Closes #17058.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/libmonome.rb | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/Library/Formula/libmonome.rb b/Library/Formula/libmonome.rb new file mode 100644 index 000000000..ca4b4442b --- /dev/null +++ b/Library/Formula/libmonome.rb @@ -0,0 +1,23 @@ +require 'formula' + +class Libmonome < Formula + homepage 'http://illest.net/libmonome/' + url 'https://github.com/monome/libmonome/tarball/1.2' + sha1 '91ed3f7246e2f9462ff43c257fae5e34006a4c85' + + head 'https://github.com/monome/libmonome.git' + + depends_on 'liblo' + + fails_with :clang do + build 421 + cause 'waf fails to find g++ when compiling with clang' + end + + def install + system "./waf", "configure", "--prefix=#{prefix}" + system "./waf build" + system "./waf install" + end + +end |
