c8d2d41c1d
This takes care of a `brew audit` complaint. Closes Homebrew/homebrew#18828. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
19 lines
471 B
Ruby
19 lines
471 B
Ruby
require 'formula'
|
|
|
|
class Serialosc < Formula
|
|
homepage 'http://docs.monome.org/doku.php?id=app:serialosc'
|
|
url 'https://github.com/monome/serialosc/archive/1.2.tar.gz'
|
|
sha1 '230c3f0cb6176da6aec3b80500e175cb7f90a76a'
|
|
|
|
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
|