-
-
Save lxfontes/1425987 to your computer and use it in GitHub Desktop.
Homebrew formula for installing FreeSWITCH that I wrote tonight. Unsure of best way to automatically "test" FreeSWITCH. Thoughts?
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'formula' | |
class Freeswitch < Formula | |
url 'http://files.freeswitch.org/freeswitch-snapshot.tar.gz' | |
homepage '' | |
md5 'bb0aa3a04479f06caa8815530ca22d05' | |
version '1.0.8.alpha' | |
depends_on 'cmake' | |
depends_on 'jpeg' | |
depends_on 'spidermonkey' | |
def install | |
system "./bootstrap.sh" | |
system "./configure", "--enable-shared", "--enable-static", | |
"--disable-dependency-tracking", | |
"--prefix=#{prefix}", | |
"--exec_prefix=#{prefix}" | |
system "make" | |
system "make mod_xml_curl" | |
system "make install" | |
system "make mod_xml_curl-install" | |
system "make cd-sounds-install" | |
system "make cd-moh-install" | |
end | |
def test | |
# this will fail we won't accept that, make it test the program works! | |
system "/usr/bin/false" | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment