blob: 35a0496999a0185efa801577a2fce0edf466a263 (
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
|
require 'formula'
class Cookiecutter < Formula
homepage 'https://github.com/audreyr/cookiecutter'
url 'https://pypi.python.org/packages/source/c/cookiecutter/cookiecutter-0.8.0.tar.gz'
sha1 'f8d68f73b5a36540a8798c0aee4eebda028653c5'
bottle do
cellar :any
sha1 "ddaf7d11f1fcc1c8843cabd041f074764725a0f0" => :yosemite
sha1 "90a6ae68fd96ceab215f2dfaab0cc3ac9525908d" => :mavericks
sha1 "4c69f62dfffca5508feb0a5753dd0d4b7efb8ebe" => :mountain_lion
end
depends_on :python if MacOS.version <= :snow_leopard
def install
ENV.prepend_create_path 'PYTHONPATH', libexec+'lib/python2.7/site-packages'
system "python", "setup.py", "install", "--prefix=#{libexec}"
bin.install Dir[libexec/'bin/*']
bin.env_script_all_files(libexec+'bin', :PYTHONPATH => ENV['PYTHONPATH'])
end
test do
system "#{bin}/cookiecutter", "--help"
end
end
|