bitlbee 3.5.1
Closes #13586. Signed-off-by: FX Coudert <fxcoudert@gmail.com>
This commit is contained in:
parent
34fcd1c32c
commit
b2b4b2f493
1 changed files with 20 additions and 4 deletions
|
@ -1,11 +1,24 @@
|
|||
class Bitlbee < Formula
|
||||
desc "IRC to other chat networks gateway"
|
||||
homepage "https://www.bitlbee.org/"
|
||||
url "https://get.bitlbee.org/src/bitlbee-3.5.tar.gz"
|
||||
sha256 "549d02181ab303dfe8a219faafd7a1aea7ee642eb071b767f668782a57388319"
|
||||
|
||||
head "https://github.com/bitlbee/bitlbee.git"
|
||||
|
||||
stable do
|
||||
url "https://get.bitlbee.org/src/bitlbee-3.5.1.tar.gz"
|
||||
sha256 "9636d7fd89ebb3756c13a9a3387736ca6d56ccf66ec0580d512f07b21db0fa69"
|
||||
|
||||
# Fixes a couple of bugs/potential crashes.
|
||||
patch do
|
||||
url "https://github.com/bitlbee/bitlbee/commit/17a58dfa.patch"
|
||||
sha256 "2eab8a84eac25d3e5630e7da8cbd45f6e6a2e0d70d0dac111c8b0053b73cab68"
|
||||
end
|
||||
|
||||
patch do
|
||||
url "https://github.com/bitlbee/bitlbee/commit/eb73d05e.patch"
|
||||
sha256 "0bdf1478f21b666cf1df194d05be7bcaf9b7d6d1ce3c99ac90563288e3c30935"
|
||||
end
|
||||
end
|
||||
|
||||
bottle do
|
||||
sha256 "25e0fccb21f49326295ef5b24de1b6001ebb60e82f7dfad58ea1b14753aa7006" => :sierra
|
||||
sha256 "9f2fe2cde9e8282312eeeea3b694f94d6669ece67a653156c93270f9b6d8f1cb" => :el_capitan
|
||||
|
@ -33,6 +46,7 @@ class Bitlbee < Formula
|
|||
--plugindir=#{HOMEBREW_PREFIX}/lib/bitlbee/
|
||||
--debug=0
|
||||
--ssl=gnutls
|
||||
--etcdir=#{etc}/bitlbee
|
||||
--pidfile=#{var}/bitlbee/run/bitlbee.pid
|
||||
--config=#{var}/bitlbee/lib/
|
||||
--ipsocket=#{var}/bitlbee/run/bitlbee.sock
|
||||
|
@ -51,7 +65,9 @@ class Bitlbee < Formula
|
|||
system "make", "install-dev"
|
||||
# This build has an extra step.
|
||||
system "make", "install-etc"
|
||||
end
|
||||
|
||||
def post_install
|
||||
(var/"bitlbee/run").mkpath
|
||||
(var/"bitlbee/lib").mkpath
|
||||
end
|
||||
|
@ -100,6 +116,6 @@ class Bitlbee < Formula
|
|||
end
|
||||
|
||||
test do
|
||||
shell_output("#{sbin}/bitlbee -V", 1)
|
||||
assert_match version.to_s, shell_output("#{sbin}/bitlbee -V", 1)
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue