aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/asterisk.rb20
1 files changed, 0 insertions, 20 deletions
diff --git a/Library/Formula/asterisk.rb b/Library/Formula/asterisk.rb
deleted file mode 100644
index 67a2776ec..000000000
--- a/Library/Formula/asterisk.rb
+++ /dev/null
@@ -1,20 +0,0 @@
-require 'formula'
-
-class Asterisk < Formula
- url 'http://downloads.asterisk.org/pub/telephony/asterisk/releases/asterisk-1.8.3.2.tar.gz'
- homepage 'http://www.asterisk.org/'
- md5 '0bee03f4498a6081146a579b51130633'
-
- skip_clean :all # Or modules won't load
-
- def options
- [['--with-sample-config', "Install the sample config files. NOTE. Without this, you won't have any config file."]]
- end
-
- def install
- system "./configure", "--prefix=#{prefix}", "--localstatedir=#{var}", "--sysconfdir=#{etc}"
- system "make"
- system "make install"
- system "make samples" if ARGV.include? '--with-sample-config'
- end
-end