-
-
Save ckozus/23313 to your computer and use it in GitHub Desktop.
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
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