homebrew-core/Formula/ninja-ide.rb
Jeroen f55d19b0ed ninja-ide: 2.3 - Python IDE
NINJA-IDE (from: "Ninja Is Not Just Another IDE"),
is a cross-platform integrated development
environment specially designed to build Python
Applications. NINJA-IDE provides tools to simplify
the Python-software development and handles all
kinds of situations thanks to its rich extensibility.

Closes Homebrew/homebrew#21487

Signed-off-by: Samuel John <github@SamuelJohn.de>

Just added a test and fixed the python fsenvents dep.
2013-08-08 18:15:33 +02:00

22 lines
536 B
Ruby

require 'formula'
class NinjaIde < Formula
homepage 'http://ninja-ide.org/'
url 'https://github.com/ninja-ide/ninja-ide/archive/v2.3.tar.gz'
sha1 '64ccbbf8521a8fbef43c3d57cf616b7f8b466460'
depends_on :python
depends_on :python => ['fsevents' => 'MacFSEvents']
depends_on 'pyqt'
def install
python do
system python, "setup.py", "install", "--prefix=#{prefix}",
"--single-version-externally-managed", "--record=installed.txt"
end
end
test do
system "ninja-ide", "-h"
end
end