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
master
Edward George 2010-08-06 22:56:01 +01:00 committed by David Höppner
parent 8239149857
commit 404672b9a3
1 changed files with 13 additions and 0 deletions

13
Formula/liblo.rb Normal file
View File

@ -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