blob: fd3600ddd4346d031cc18928a180e1f9e35f7c10 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
require 'formula'
class Weechat <Formula
head 'git://git.sv.gnu.org/weechat.git'
url 'http://www.weechat.org/files/src/weechat-0.3.2.tar.bz2'
homepage 'http://www.weechat.org'
md5 'b0b00b321203dd5746a25248a9adaa92'
depends_on 'cmake'
depends_on 'gnutls'
def install
#FIXME: Compiling perl module doesn't work
#NOTE: -DPREFIX has to be specified because weechat devs enjoy being non-standard
system "cmake", "-DPREFIX=#{prefix}",
"-DDISABLE_PERL=ON",
"-DDISABLE_RUBY:BOOL=ON",
std_cmake_parameters, "."
system "make install"
end
end
|