source: other-projects/is-sheet-music-encore/trunk/README.txt@ 32930

Last change on this file since 32930 was 32930, checked in by davidb, 5 years ago

Some initial files

File size: 800 bytes
Line 
1
2export IS_MUSIC2_HOME=`pwd`
3
4# Install a portable/relocatable Perl:
5
6curl -sSL https://git.io/perl-install | bash -s "$IS_MUSIC2_HOME/perl-relocatable"
7
8
9
10# Configure and install openssl
11
12./config --prefix=$IS_MUSIC2_HOME/openssl
13
14
15# Use cpanm (cpan-minus) to install Perl packages
16
17
18CONFIG_ARGS="INC=\"$CFLAGS\" LDDLFLAGS=\"-shared -L/usr/local/lib -fstack-protector-strong $LDFLAGS\" LDFLAGS=\"-fstack-protector-strong $LDFLAGS\""
19
20cpanm Crypt::OpenSSL::Random --configure-args "$CONFIG_ARGS"
21# --interactive --verbose
22
23cpanm Crypt::OpenSSL::RSA --configure-args "$CONFIG_ARGS"
24
25cpanm OAuth::Lite --configure-args "$CONFIG_ARGS"
26
27cpanm CGI --configure-args "$CONFIG_ARGS"
28
29cpanm --notest NET::SSLeay --configure-args "$CONFIG_ARGS"
30
31cpanm LWP::Protocol::https --configure-args "$CONFIG_ARGS"
32
33
34
Note: See TracBrowser for help on using the repository browser.