51 lines
1.4 KiB
Ruby
51 lines
1.4 KiB
Ruby
class Libswiften < Formula
|
|
desc "C++ library for implementing XMPP applications"
|
|
homepage "https://swift.im/swiften"
|
|
url "https://swift.im/downloads/releases/swift-4.0/swift-4.0.tar.gz"
|
|
sha256 "50b7b2069005b1474147110956f66fdde0afb2cbcca3d3cf47de56dc61217319"
|
|
revision 1
|
|
|
|
bottle do
|
|
sha256 "5c73d53cf6bff9ca3fe3e998f696e21f557ee506bddc4967f95bb6f17be54696" => :mojave
|
|
sha256 "6aa48ae140c14532465fc4b875fc19fe339646d9b3ba141c6a030db873f07383" => :high_sierra
|
|
sha256 "e0501ba8ac4d5f61fb1769d13595c1eb81d0126c2abb2181b5313dd3e42d642e" => :sierra
|
|
sha256 "374fbcd5d163aeaeaee0ea17356df25244799c2b30d3e760dfc644f6e6c70e6a" => :el_capitan
|
|
end
|
|
|
|
depends_on "scons" => :build
|
|
depends_on "boost"
|
|
depends_on "libidn"
|
|
depends_on "lua@5.1"
|
|
|
|
def install
|
|
boost = Formula["boost"]
|
|
libidn = Formula["libidn"]
|
|
lua = Formula["lua@5.1"]
|
|
|
|
args = %W[
|
|
-j #{ENV.make_jobs}
|
|
V=1
|
|
linkflags=-headerpad_max_install_names
|
|
optimize=1 debug=0
|
|
allow_warnings=1
|
|
swiften_dll=1
|
|
boost_includedir=#{boost.include}
|
|
boost_libdir=#{boost.lib}
|
|
libidn_includedir=#{libidn.include}
|
|
libidn_libdir=#{libidn.lib}
|
|
SWIFTEN_INSTALLDIR=#{prefix}
|
|
openssl=no
|
|
SLUIFT_INSTALLDIR=#{prefix}
|
|
lua_includedir=#{lua.include}/lua-5.1
|
|
lua_libdir=#{lua.lib}
|
|
lua_libname=lua.5.1
|
|
#{prefix}
|
|
]
|
|
|
|
scons *args
|
|
end
|
|
|
|
test do
|
|
system "#{bin}/swiften-config"
|
|
end
|
|
end
|