Skip to content
This repository has been archived by the owner on Jul 4, 2023. It is now read-only.

Commit

Permalink
geany: fix compilation against current glib
Browse files Browse the repository at this point in the history
  • Loading branch information
adamv committed Jun 12, 2012
1 parent f7903a2 commit 3d5aa07
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion Library/Formula/geany.rb
Expand Up @@ -11,9 +11,15 @@ class Geany < Formula
depends_on 'gtk+'

def install
# Needed to compile against current version of glib.
# Check that this is still needed when updating the formula.
ENV.append 'LDFLAGS', '-lgmodule-2.0'

intltool = Formula.factory('intltool')
ENV.append "PATH", intltool.bin, ":"

This comment has been minimized.

Copy link
@jacknagel

jacknagel Jun 12, 2012

Contributor

Not your doing, but this is voodoo-ish, and was probably done because intltool was unlinked on the author's system.

This comment has been minimized.

Copy link
@adamv

adamv Jun 12, 2012

Author Contributor

Will fix

system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}"

system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make install"
end
end

0 comments on commit 3d5aa07

Please sign in to comment.