support 32bit linux
This commit is contained in:
parent
edde887357
commit
a85bf6489d
2 changed files with 21 additions and 16 deletions
33
README.md
33
README.md
|
@ -14,22 +14,6 @@ If you dont have native IPv6 you can use Teredo/Miredo (apt-get install miredo)
|
||||||
or get a tunnel Hurricane Electric (https://tunnelbroker.net/)
|
or get a tunnel Hurricane Electric (https://tunnelbroker.net/)
|
||||||
or SixSS (https://sixxs.net).
|
or SixSS (https://sixxs.net).
|
||||||
|
|
||||||
Platform
|
|
||||||
----------
|
|
||||||
|
|
||||||
If you install Open Media Library on a architecture thats not directly supported,
|
|
||||||
you need a working python 2.7.x installation and the following packages:
|
|
||||||
|
|
||||||
apt-get install \
|
|
||||||
python-pypdf python-stdnum python-html5lib python-chardet python-openssl \
|
|
||||||
python-simplejson python-lxml
|
|
||||||
pip install -r requirements.txt
|
|
||||||
|
|
||||||
On Linux you need to always install:
|
|
||||||
|
|
||||||
apt-get install \
|
|
||||||
python-imaging python-lxml ghostscript
|
|
||||||
|
|
||||||
Development
|
Development
|
||||||
-----------
|
-----------
|
||||||
|
|
||||||
|
@ -43,3 +27,20 @@ Development
|
||||||
|
|
||||||
# and start it
|
# and start it
|
||||||
./ctl debug
|
./ctl debug
|
||||||
|
|
||||||
|
Platform
|
||||||
|
----------
|
||||||
|
|
||||||
|
If you install Open Media Library on a architecture thats not directly supported,
|
||||||
|
you need a working python 2.7.x installation and the following packages:
|
||||||
|
|
||||||
|
apt-get install \
|
||||||
|
python-pypdf python-stdnum python-html5lib python-chardet python-openssl \
|
||||||
|
python-simplejson python-lxml
|
||||||
|
pip install -r requirements.txt
|
||||||
|
|
||||||
|
On Linux you need to always install:
|
||||||
|
|
||||||
|
apt-get install \
|
||||||
|
python-imaging python-lxml ghostscript
|
||||||
|
|
||||||
|
|
4
ctl
4
ctl
|
@ -9,7 +9,11 @@ if [ -e oml ]; then
|
||||||
fi
|
fi
|
||||||
BASE=`pwd`
|
BASE=`pwd`
|
||||||
SYSTEM=`uname -s`
|
SYSTEM=`uname -s`
|
||||||
|
PLATFORM=`uname -m`
|
||||||
|
|
||||||
|
if [ $SYSTEM == "Linux" ]; then
|
||||||
|
SYSTEM="${SYSTEM}_${PLATFORM}"
|
||||||
|
fi
|
||||||
export PLATFORM_ENV="$BASE/platform/$SYSTEM"
|
export PLATFORM_ENV="$BASE/platform/$SYSTEM"
|
||||||
if [ $SYSTEM == "Darwin" ]; then
|
if [ $SYSTEM == "Darwin" ]; then
|
||||||
export DYLD_FALLBACK_LIBRARY_PATH="$PLATFORM_ENV/lib"
|
export DYLD_FALLBACK_LIBRARY_PATH="$PLATFORM_ENV/lib"
|
||||||
|
|
Loading…
Reference in a new issue