Skip to content

Instantly share code, notes, and snippets.

@luislavena
Created October 25, 2008 05:55
Show Gist options
  • Save luislavena/19707 to your computer and use it in GitHub Desktop.
Save luislavena/19707 to your computer and use it in GitHub Desktop.
package 'openssl', :type => :make do
default 'source'
version 'source' do
download 'http://...'
# hooks
before :download { }
after :download { }
after :extract { }
after :configure { }
before :compile { } # make
after :compile { } # make
after :install { } # make install
end
version '1.8.99' do
# ...
end
end
## command line:
# rake openssl
# rake openssl[1.8.99]
# rake openssl[source]
#
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment