blob: 6cc1b3a4cd0afae0645b225bd60b9911fdcfffbc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
require 'formula'
class Tabbed < Formula
homepage 'http://tools.suckless.org/tabbed'
url 'http://dl.suckless.org/tools/tabbed-0.6.tar.gz'
sha1 '3c64d79817337f86f0cdd60b5b79af7e77d4a5f9'
head 'http://git.suckless.org/tabbed'
depends_on :x11
def install
inreplace 'config.mk', "LIBS = -L/usr/lib -lc -lX11", "LIBS = -L#{MacOS::X11.lib} -lc -lX11"
system "make", "PREFIX=#{prefix}", "install"
end
end
|