diff options
| author | Nate Stedman | 2010-07-13 18:42:39 -0400 |
|---|---|---|
| committer | Adam Vandenberg | 2010-07-26 20:51:39 -0700 |
| commit | 79da1f1cbe9507bf87e69145028c4e8214b4256e (patch) | |
| tree | bf3448e608a5be964841e10ca475eb5e014611ef /Library/Formula/gnome-common.rb | |
| parent | 436cd25aef34e568d618abfde6f4e27ca55664e0 (diff) | |
| download | homebrew-79da1f1cbe9507bf87e69145028c4e8214b4256e.tar.bz2 | |
Added gnome-common formula.
gnome-common is a module that is required only when
building GNOME from the repository.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula/gnome-common.rb')
| -rw-r--r-- | Library/Formula/gnome-common.rb | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/Library/Formula/gnome-common.rb b/Library/Formula/gnome-common.rb new file mode 100644 index 000000000..db293037a --- /dev/null +++ b/Library/Formula/gnome-common.rb @@ -0,0 +1,12 @@ +require 'formula' + +class GnomeCommon <Formula + url 'http://ftp.gnome.org/pub/gnome/sources/gnome-common/2.28/gnome-common-2.28.0.tar.gz' + homepage 'http://git.gnome.org/browse/gnome-common/' + md5 'c85414eb4538961973f9f68fcdb96c58' + + def install + system "./configure", "--prefix=#{prefix}" + system "make install" + end +end |
