2009-12-27 11:34:23 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Tabbed < Formula
|
2009-12-27 11:34:23 +00:00
|
|
|
homepage 'http://tools.suckless.org/tabbed'
|
2013-01-28 05:08:10 +00:00
|
|
|
url 'http://dl.suckless.org/tools/tabbed-0.4.tar.gz'
|
2013-01-28 03:43:48 +00:00
|
|
|
sha1 '7529360b088df30b66f05aa960712f1feda46e91'
|
|
|
|
|
2009-12-27 11:34:23 +00:00
|
|
|
head 'http://hg.suckless.org/tabbed'
|
|
|
|
|
2012-06-07 01:35:12 +00:00
|
|
|
depends_on :x11
|
|
|
|
|
2009-12-27 11:34:23 +00:00
|
|
|
def install
|
2013-01-28 03:43:48 +00:00
|
|
|
inreplace 'config.mk', "LIBS = -L/usr/lib -lc -lX11", "LIBS = -L#{MacOS::X11.lib} -lc -lX11"
|
2012-05-15 18:31:21 +00:00
|
|
|
system "make", "PREFIX=#{prefix}", "install"
|
2009-12-27 11:34:23 +00:00
|
|
|
end
|
|
|
|
end
|