2009-10-15 08:07:12 +00:00
|
|
|
require 'formula'
|
2009-09-17 18:41:05 +00:00
|
|
|
|
|
|
|
class Weechat <Formula
|
2010-02-08 12:18:02 +00:00
|
|
|
head 'git://git.sv.gnu.org/weechat.git'
|
2010-08-08 12:43:49 +00:00
|
|
|
url 'http://www.weechat.org/files/src/weechat-0.3.3.tar.bz2'
|
2010-02-08 12:18:02 +00:00
|
|
|
homepage 'http://www.weechat.org'
|
2010-08-08 12:43:49 +00:00
|
|
|
md5 '01648f8717ab1ea5233f9818d45a7c24'
|
2009-09-17 18:41:05 +00:00
|
|
|
|
2009-09-21 18:00:13 +00:00
|
|
|
depends_on 'cmake'
|
2009-09-18 13:38:43 +00:00
|
|
|
depends_on 'gnutls'
|
2009-09-17 18:41:05 +00:00
|
|
|
|
|
|
|
def install
|
2010-08-08 20:51:00 +00:00
|
|
|
|
|
|
|
# Remove all arch flags from the PERL_*FLAGS as we specify them ourselves.
|
|
|
|
# This messes up because the system perl is a fat binary with 32,64 and PPC
|
|
|
|
# compiles, but our deps don't have that.
|
|
|
|
archs = ['-arch ppc', '-arch i386', '-arch x86_64']
|
|
|
|
inreplace "src/plugins/scripts/perl/CMakeLists.txt",
|
|
|
|
'IF(PERL_FOUND)',
|
|
|
|
'IF(PERL_FOUND)' +
|
|
|
|
%Q{\n STRING(REGEX REPLACE "#{archs.join '|'}" "" PERL_CFLAGS "${PERL_CFLAGS}")} +
|
|
|
|
%Q{\n STRING(REGEX REPLACE "#{archs.join '|'}" "" PERL_LFLAGS "${PERL_LFLAGS}")}
|
|
|
|
|
2009-09-18 13:38:43 +00:00
|
|
|
#FIXME: Compiling perl module doesn't work
|
2009-10-02 18:56:20 +00:00
|
|
|
#NOTE: -DPREFIX has to be specified because weechat devs enjoy being non-standard
|
2010-04-07 05:58:35 +00:00
|
|
|
system "cmake", "-DPREFIX=#{prefix}",
|
2010-02-08 12:18:02 +00:00
|
|
|
"-DDISABLE_RUBY:BOOL=ON",
|
2009-10-02 18:56:20 +00:00
|
|
|
std_cmake_parameters, "."
|
2009-09-17 18:41:05 +00:00
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|