blob: 5e9dd1a1f1b5654bef6019714acd27ca5b84dd36 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
  | 
require 'formula'
class Pygtksourceview < Formula
  homepage 'http://projects.gnome.org/gtksourceview/pygtksourceview.html'
  url 'http://ftp.gnome.org/pub/gnome/sources/pygtksourceview/2.10/pygtksourceview-2.10.0.tar.bz2'
  sha256 'bfdde2ce4f61d461fb34dece9433cf81a73a9c9de6b62d4eb06177b8c9cec9c7'
  depends_on 'pkg-config' => :build
  depends_on 'gtksourceview'
  depends_on 'pygtk'
  def install
    system "./configure", "--disable-dependency-tracking",
                          "--prefix=#{prefix}",
                          "--disable-docs"  # attempts to download chunk.xsl on demand (and sometimes fails)
    system "make install"
  end
  def caveats; <<-EOS.undent
    For non-homebrew Python, you need to amend your PYTHONPATH like so:
      export PYTHONPATH=#{HOMEBREW_PREFIX}/lib/#{which_python}/site-packages:$PYTHONPATH
    EOS
  end
  def which_python
    "python" + `python -c 'import sys;print(sys.version[:3])'`.strip
  end
  test do
    system "python", "-c", "import gtksourceview2"
  end
end
  |