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-08-11 05:46:41 +00:00
|
|
|
url 'http://dl.suckless.org/tools/tabbed-0.5.tar.gz'
|
|
|
|
sha1 'fbe19653b65bec4670eda2e95d934eab2e5d4e45'
|
2013-01-28 03:43:48 +00:00
|
|
|
|
2013-08-11 05:46:41 +00:00
|
|
|
head 'http://git.suckless.org/tabbed'
|
2009-12-27 11:34:23 +00:00
|
|
|
|
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
|