5228982ee5
Libglade is a library that performs a similar job to the C source output routines in the GLADE user interface builder. Whereas GLADE's output routines create C source code that must be compiled, libglade builds the interface from an XML file (GLADE's save format) at runtime. This can allow modifying the user interface without recompiling. Signed-off-by: Adam Vandenberg <flangy@gmail.com> * gtk+ dep pulls in glib and atk * Remove unused configure switch
15 lines
412 B
Ruby
15 lines
412 B
Ruby
require 'formula'
|
|
|
|
class Libglade <Formula
|
|
url 'http://ftp.gnome.org/pub/GNOME/sources/libglade/2.6/libglade-2.6.4.tar.gz'
|
|
homepage 'http://glade.gnome.org'
|
|
sha256 'c41d189b68457976069073e48d6c14c183075d8b1d8077cb6dfb8b7c5097add3'
|
|
|
|
depends_on 'libxml2'
|
|
depends_on 'gtk+'
|
|
|
|
def install
|
|
system "./configure", "--prefix=#{prefix}", "--disable-dependency-tracking"
|
|
system "make install"
|
|
end
|
|
end
|