diff options
| author | Edward George | 2010-08-06 22:56:01 +0100 |
|---|---|---|
| committer | David Höppner | 2010-08-09 13:19:29 +0200 |
| commit | 74af8ed4ae8a1591a6cf5fc9bc68d633181a0239 (patch) | |
| tree | 0f8e2c86ec3eb6f31bffb8d4b864366f256e4c94 /Library | |
| parent | 72309d7575e0ca14499952c1adcc16898dc12018 (diff) | |
| download | homebrew-74af8ed4ae8a1591a6cf5fc9bc68d633181a0239.tar.bz2 | |
New Formula: liblo 0.26
liblo is an lightweight implementation of the Open Sound Control protocol for POSIX
system.
Signed-off-by: David Höppner <0xffea@gmail.com>
* added md5
* changed commit message a little
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/liblo.rb | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/Library/Formula/liblo.rb b/Library/Formula/liblo.rb new file mode 100644 index 000000000..1662df68c --- /dev/null +++ b/Library/Formula/liblo.rb @@ -0,0 +1,13 @@ +require 'formula' + +class Liblo <Formula + url 'http://downloads.sourceforge.net/project/liblo/liblo/0.26/liblo-0.26.tar.gz' + homepage 'http://liblo.sourceforge.net/' + md5 '5351de14262560e15e7f23865293b16f' + + def install + system "./configure", "--disable-debug", "--disable-dependency-tracking", + "--enable-ipv6", "--prefix=#{prefix}" + system "make install" + end +end |
