homebrew-core/Formula/serialosc.rb
Andrew Janke c8d2d41c1d Change github /tarball/ URLs to /archive/ for formulae L-Z
This takes care of a `brew audit` complaint.

Closes Homebrew/homebrew#18828.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2013-03-29 14:59:28 -07:00

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