-
Notifications
You must be signed in to change notification settings - Fork 19
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Refactor package structure #277
Conversation
Might be useful: https://python.tutorialink.com/run-makefile-on-pip-install/ |
This reverts commit 811b164.
for more information, see https://pre-commit.ci
Haven't tested it, but perhaps you can thankfully also edit diff --git c/linien/server/linien_install_requirements.sh i/linien/server/linien_install_requirements.sh
index dee6fa6..056d167 100644
--- c/linien/server/linien_install_requirements.sh
+++ i/linien/server/linien_install_requirements.sh
@@ -19,19 +19,7 @@ mkdir linien
echo 'installing pyrp3...'
# install pyrp3
-cd /tmp/linien
-git clone https://github.com/linien-org/pyrp3.git
-cd pyrp3
-python3 setup.py install
-
-echo 'building monitor...'
-# build monitor shared library
-cd monitor
-make
-cp libmonitor.so /usr/lib/
-
-cd /tmp
-rm -R /tmp/linien
+pip install pyrp3
# https://github.com/RedPitaya/RedPitaya/issues/205
echo 'building ethernet blinking fix'
@@ -40,4 +28,4 @@ cd mdio-tool
cmake .
make
rm -f /usr/bin/mdio-tool
-mv mdio-tool /usr/bin
\ No newline at end of file
+mv mdio-tool /usr/bin |
This is already incorporated into both the master branch: no more need to to call this at all in However, I just relalized that in the develop branch there was still a merge conflict present. Thank you for bringing that to my attention :) |
No description provided.