blob: 46957373e44b8f8f9d09a927f25cb54d4f2a89c0 (
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/tarball/1.2'
sha1 'a5eb073df2e4882baf7adb3ae35a92b861652977'
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
|