homebrew-core/Formula/cookiecutter.rb

22 lines
643 B
Ruby
Raw Normal View History

require 'formula'
class Cookiecutter < Formula
homepage 'https://github.com/audreyr/cookiecutter'
url 'https://pypi.python.org/packages/source/c/cookiecutter/cookiecutter-0.7.1.tar.gz'
sha1 '278a615977a4b29cead14cc9ede07a8c7452864a'
depends_on :python if MacOS.version <= :snow_leopard
def install
2014-01-04 13:03:55 +00:00
ENV.prepend_create_path 'PYTHONPATH', libexec+'lib/python2.7/site-packages'
system "python", "setup.py", "install", "--prefix=#{libexec}"
2014-01-04 13:03:55 +00:00
bin.install Dir[libexec/'bin/*']
bin.env_script_all_files(libexec+'bin', :PYTHONPATH => ENV['PYTHONPATH'])
end
2014-04-30 22:36:42 +00:00
test do
system "#{bin}/cookiecutter", "--help"
end
end