blob: 83b307e620cd2c38efdc0f63bde29239f5eed12c (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
 | 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
 |