blob: 6bf9f2f4e223828e6a9aac6f94d5a3f97f3a0364 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
require 'formula'
class Hexchat < Formula
homepage 'http://hexchat.github.io/'
head 'https://github.com/hexchat/hexchat.git'
stable do
url 'http://dl.hexchat.net/hexchat/hexchat-2.10.0.tar.xz'
sha256 'a0247f1e12379154d0719d9c6861dc22817b588562653bb9d3626863d8eca916'
patch do
# Fixes building --with-plugin on older than Mavericks and --without-plugin on all
url 'https://github.com/hexchat/hexchat/commit/8578a9d52d993f4425259462c01854ea7784c57f.diff'
sha256 '77575dc70943299422d87c9d5b57061f49aa7bd58c03fbd78973e37a8310c625'
end
end
depends_on :macos => :lion
depends_on 'pkg-config' => :build
depends_on 'automake' => :build
depends_on 'autoconf' => :build
depends_on 'libtool' => :build
depends_on 'intltool' => :build
depends_on 'gnome-common' => :build
depends_on :python => :optional
depends_on :python3 => :optional
depends_on 'gettext'
depends_on 'gtk+'
depends_on :x11
option 'without-perl', 'Build without Perl support'
option 'without-plugins', 'Build without plugin support'
def install
args = %W[--prefix=#{prefix}
--disable-dependency-tracking
--enable-openssl]
if build.with? "python3"
py_ver = Formula["python3"].version.to_s[0..2] # e.g "3.4"
ENV.append_path "PKG_CONFIG_PATH", "#{HOMEBREW_PREFIX}/Frameworks/Python.framework/Versions/#{py_ver}/lib/pkgconfig/"
args << "--enable-python=python#{py_ver}"
elsif build.with? "python"
ENV.append_path "PKG_CONFIG_PATH", "#{HOMEBREW_PREFIX}/Frameworks/Python.framework/Versions/2.7/lib/pkgconfig/"
ENV.append_path "PKG_CONFIG_PATH", "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/pkgconfig/"
args << "--enable-python=python2.7"
else
args << "--disable-python"
end
args << "--disable-perl" if build.without? "perl"
args << "--disable-plugin" if build.without? "plugins"
system "./autogen.sh"
system "./configure", *args
system "make"
system "make install"
rm_rf share/"applications"
rm_rf share/"appdata"
end
end
|