From 50ee895f80bbd7ac03ceec7a5373bceedffcd15a Mon Sep 17 00:00:00 2001 From: "Scott T. Hardin" Date: Mon, 24 Nov 2014 14:47:28 +0100 Subject: [PATCH] Brief info about myperl --- MYPERL.md | 53 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 53 insertions(+) create mode 100644 MYPERL.md diff --git a/MYPERL.md b/MYPERL.md new file mode 100644 index 0000000000..ba7c0ab0d9 --- /dev/null +++ b/MYPERL.md @@ -0,0 +1,53 @@ +# MYPERL + +As a simplified alternative to individual packages for the plethora of +CPAN modules we require, the myperl installation may be used. + +# BUILDING PACKAGES + +## Before You Start + +On your build system, you should have the following repository clones: + + ~/git/myperl -> e.g. http://github.com/mrscotty/myperl.git + ~/git/openxpki -> e.g. http://github.com/openxpki/openxpki.git + +## SuSE + +### myperl + + cd ~/git/myperl && make fetch-perl suse + sudo rpm -Uvh ~/rpmbuild/RPMS/x86_64/myperl--.x86_64.rpm + +### build tools + + /opt/myperl/bin/perl -I~/perl5/lib/perl5/ /usr/bin/cpanm Config::Std + + +### DBD::mysql + + cd ~/git/openxpki/package/suse/myperl-dbd-mysql && make + sudo rpm -Uvh ~/rpmbuild/RPMS/x86_64/myperl-dbd-mysql--1.x86_64.rpm + +### Apache mod\_perl + + cd ~/git/openxpki/package/suse/myperl-apache-mod-perl && make + +### DBD::Oracle + + cd ~/git/openxpki/package/suse/myperl-dbd-oracle && make + +### OXI core dependencies + + cd ~/git/openxpki/package/suse/myperl-openxpki-core-deps && make + sudo rpm -Uvh \ + ~/rpmbuild/RPMS/x86_64/myperl-openxpki-core-deps--1.x86_64.rpm + +### OXI core + + cd ~/git/openxpki/package/suse/myperl-openxpki-core && make + sudo rpm -Uvh \ + ~/rpmbuild/RPMS/x86_64/myperl-openxpki-core--1.x86_64.rpm + + +