Skip to content

Commit

Permalink
add back southpole as extra module
Browse files Browse the repository at this point in the history
  • Loading branch information
hexdump0815 committed Nov 24, 2020
1 parent 606757b commit f7e4e1f
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions prepare-modules.sh
Original file line number Diff line number Diff line change
Expand Up @@ -752,6 +752,34 @@ cd ..
# go back to a defined starting point to be on the safe side
cd ${WORKDIR}/compile/plugins

# southpole-vcvrack
echo ""
echo "===> southpole-vcvrack extra plugin"
echo ""
# if we have a source archive in the source dir use that ...
if [ -f ../../source/southpole-vcvrack-source.tar.gz ]; then
echo "INFO: using sources from the source archive"
( cd ../.. ; tar xzf source/southpole-vcvrack-source.tar.gz )
cd southpole-vcvrack
# ... otherwise get it from git and create a source archive afterwards
else
git clone https://github.com/dogonthehorizon/southpole-vcvrack
cd southpole-vcvrack
git checkout v1
git submodule update --init --recursive
( cd ../../.. ; mkdir -p source ; tar czf source/southpole-vcvrack-source.tar.gz compile/plugins/southpole-vcvrack )
fi
if [ -f ../../../southpole-vcvrack.patch ]; then
patch -p1 < ../../../southpole-vcvrack.patch
fi
if [ -f ../../../southpole-vcvrack.$MYARCH.patch ]; then
patch -p1 < ../../../southpole-vcvrack.$MYARCH.patch
fi
cd ..

# go back to a defined starting point to be on the safe side
cd ${WORKDIR}/compile/plugins

# myrisa-modules
echo ""
echo "===> myrisa-modules extra plugin"
Expand Down

0 comments on commit f7e4e1f

Please sign in to comment.