summaryrefslogtreecommitdiff
path: root/pandeia-engine/build.sh
blob: 4aadc699c78fde02a042ccc868aeb4c6a132f09b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11

pip install --no-deps --upgrade --force d2to1 || exit 1

( cd engine && \
(python setup.py install || exit 1 ) ) && \
( cd ui && \
(python setup.py install || exit 1 ) )

DOCDIR="$PREFIX/share/doc/pandeia-engine"
mkdir -p $DOCDIR
cp -a doc/{api_overview,user,install} $DOCDIR