InspIRCd 2.0.8
Closes Homebrew/homebrew#14854. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
This commit is contained in:
parent
63fcbbff81
commit
9051bf2dc9
1 changed files with 34 additions and 0 deletions
34
Formula/inspircd.rb
Normal file
34
Formula/inspircd.rb
Normal file
|
@ -0,0 +1,34 @@
|
|||
require 'formula'
|
||||
|
||||
class Inspircd < Formula
|
||||
homepage 'http://inspircd.github.com'
|
||||
url 'https://github.com/downloads/inspircd/inspircd/InspIRCd-2.0.8.tar.bz2'
|
||||
sha1 'c8bcbc222df40bc8110cefdb4a1fee91ad7c73d1'
|
||||
|
||||
head 'https://github.com/inspircd/inspircd.git', :branch => 'insp20'
|
||||
|
||||
option 'without-gnutls', 'Disable the GnuTLS module'
|
||||
option 'with-openssl', 'Enable the OpenSSL module'
|
||||
option 'with-pcre', 'Enable the PCRE module'
|
||||
option 'with-tre', 'Enable the TRE module'
|
||||
|
||||
depends_on 'pkg-config' => :build
|
||||
depends_on 'gnutls' unless build.include? 'without-gnutls'
|
||||
depends_on 'openssl' if build.include? 'with-openssl'
|
||||
depends_on 'pcre' if build.include? 'with-pcre'
|
||||
depends_on 'tre' if build.include? 'with-tre'
|
||||
|
||||
def install
|
||||
modules = []
|
||||
modules << 'm_ssl_gnutls.cpp' unless build.include? 'without-gnutls'
|
||||
modules << 'm_ssl_openssl.cpp' if build.include? 'with-openssl'
|
||||
modules << 'm_regex_pcre.cpp' if build.include? 'with-pcre'
|
||||
modules << 'm_regex_tre.cpp' if build.include? 'with-tre'
|
||||
|
||||
system './configure', "--enable-extras=#{modules.join(',')}" unless modules.empty?
|
||||
system './configure', "--prefix=#{prefix}", "--with-cc=#{ENV.cc}"
|
||||
system 'make install'
|
||||
|
||||
inreplace "#{prefix}/org.inspircd.plist", 'ircdaemon', ENV['USER']
|
||||
end
|
||||
end
|
Loading…
Reference in a new issue