Skip to content

Instantly share code, notes, and snippets.

@slack4u
Created October 18, 2012 00:51
Show Gist options
  • Save slack4u/3909254 to your computer and use it in GitHub Desktop.
Save slack4u/3909254 to your computer and use it in GitHub Desktop.
Clearlooks formula for Homebrew
require 'formula'
class GtkClearlooksEngine < Formula
homepage 'http://clearlooks.sourceforge.net/'
url 'http://prdownloads.sourceforge.net/clearlooks/clearlooks-0.6.2.tar.bz2'
version '0.6.2'
sha1 'a0bf0e17c7b75fd4906683947ce17dd5598d0f65'
depends_on 'gtk+'
depends_on :x11
def install
gtk_prefix = Formula.factory('gtk+').prefix
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{gtk_prefix}"
system "make"
system "make install"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment