homebrew-core/Formula/inspircd.rb
Peter Powell 78051e7681 InspIRCd: various formula improvements.
* Use the main website domain instead of the GitHub one.
* Remove the explicit head branch specification as this is now the
  default.
* Fix a typo in one of the module file names.
* Depend on the postgresql formula as it is not part of the system
  on Mavericks.

Closes Homebrew/homebrew#24535.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2013-11-22 08:45:13 -08:00

45 lines
1.6 KiB
Ruby

require 'formula'
class Inspircd < Formula
homepage 'http://www.inspircd.org'
url 'https://github.com/inspircd/inspircd/archive/v2.0.14.tar.gz'
sha1 'b8b29fef06579ca624027a26a989cdea90a290a8'
head 'https://github.com/inspircd/inspircd.git'
skip_clean 'data'
skip_clean 'logs'
depends_on 'pkg-config' => :build
depends_on 'geoip' => :optional
depends_on 'gnutls' => :optional
depends_on 'libgcrypt' if build.with? 'gnutls'
depends_on :mysql => :optional
depends_on 'pcre' => :optional
depends_on 'postgresql' => :optional
depends_on 'sqlite' => :optional
depends_on 'tre' => :optional
option 'without-ldap', 'Build without ldap support'
option 'without-openssl', 'Build without openssl support'
def install
modules = []
modules << 'm_geoip.cpp' if build.with? 'geoip'
modules << 'm_ssl_gnutls.cpp' if build.with? 'gnutls'
modules << 'm_mysql.cpp' if build.with? 'mysql'
modules << 'm_ssl_openssl.cpp' unless build.without? 'openssl'
modules << 'm_ldapauth.cpp' unless build.without? 'ldap'
modules << 'm_ldapoper.cpp' unless build.without? 'ldap'
modules << 'm_regex_pcre.cpp' if build.with? 'pcre'
modules << 'm_pgsql.cpp' if build.with? 'postgresql'
modules << 'm_sqlite3.cpp' if build.with? 'sqlite'
modules << 'm_regex_tre.cpp' if build.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