Skip to content

Instantly share code, notes, and snippets.

@jslatts
Created November 10, 2011 23:12
Show Gist options
  • Save jslatts/1356575 to your computer and use it in GitHub Desktop.
Save jslatts/1356575 to your computer and use it in GitHub Desktop.
Building aggdraw after clone
include_recipe "mercurial"
include_recipe "hg"
execute "build aggdraw" do
command "python setup.py clean build install"
cwd "/home/django/source/aggdraw"
action :nothing
end
hg "/home/django/source/aggdraw" do
repository "http://myrepo/aggdraw"
reference "tip"
action :sync
notifies :run, resources(:execute => "build aggdraw"), :immediately
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment