Skip to content

Instantly share code, notes, and snippets.

@insignia
Forked from luislavena/gist:19707
Created November 9, 2008 18:35
Show Gist options
  • Save insignia/23312 to your computer and use it in GitHub Desktop.
Save insignia/23312 to your computer and use it in GitHub Desktop.
undefined
package 'openssl' do
type 'make'
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