Skip to content

Instantly share code, notes, and snippets.

@mbbx6spp
Created September 11, 2011 03:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save mbbx6spp/1209137 to your computer and use it in GitHub Desktop.
Save mbbx6spp/1209137 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?
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 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