homebrew-core/Formula/tabbed.rb
Alexis Hildebrandt 1e4cf31f69 tabbed 0.5
Correct head url

Closes Homebrew/homebrew#21814.

Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2013-08-11 11:28:05 -05:00

16 lines
424 B
Ruby

require 'formula'
class Tabbed < Formula
homepage 'http://tools.suckless.org/tabbed'
url 'http://dl.suckless.org/tools/tabbed-0.5.tar.gz'
sha1 'fbe19653b65bec4670eda2e95d934eab2e5d4e45'
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