Created
November 10, 2011 23:12
-
-
Save jslatts/1356575 to your computer and use it in GitHub Desktop.
Building aggdraw after clone
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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