Created
October 18, 2012 00:51
-
-
Save slack4u/3909254 to your computer and use it in GitHub Desktop.
Clearlooks formula for Homebrew
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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