libmonome 1.2
Closes Homebrew/homebrew#17058. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
This commit is contained in:
parent
b3b6be416e
commit
dc182fc3ba
1 changed files with 23 additions and 0 deletions
23
Formula/libmonome.rb
Normal file
23
Formula/libmonome.rb
Normal file
|
@ -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
|
Loading…
Reference in a new issue