homebrew-core/Formula/cookiecutter.rb
Michael Joseph c9ed146566 cookiecutter 0.7.0 - cli to create projects
A command-line utility that creates projects from cookiecutters
(project templates). E.g. Python package projects, jQuery plugin
projects.

Closes Homebrew/homebrew#24170.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2013-11-13 08:01:10 -08:00

19 lines
433 B
Ruby

require 'formula'
class Cookiecutter < Formula
homepage 'https://github.com/audreyr/cookiecutter'
url 'https://pypi.python.org/packages/source/c/cookiecutter/cookiecutter-0.7.0.tar.gz'
sha1 '2685e3288a348a04f5dd2e0f4462ad869e7fdc32'
depends_on :python
def install
python do
system python, "setup.py", "install", "--prefix=#{prefix}"
end
end
def caveats
python.standard_caveats if python
end
end