You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
600 B
Bash
23 lines
600 B
Bash
#!/bin/sh
|
|
|
|
# Get venv site-packages path
|
|
DSTDIR=`python3 -c 'from distutils.sysconfig import get_python_lib; print(get_python_lib())'`
|
|
|
|
# Get not venv site-packages path
|
|
# Remove first path (assuming that is the venv path)
|
|
NONPATH=`echo $PATH | sed 's/^[^:]*://'`
|
|
SRCDIR=`PATH=$NONPATH python3 -c 'from distutils.sysconfig import get_python_lib; print(get_python_lib())'`
|
|
|
|
# Clean up
|
|
rm -f $DSTDIR/lasso.*
|
|
rm -f $DSTDIR/_lasso.*
|
|
|
|
# Link
|
|
ln -sv /usr/lib/python3/dist-packages/lasso.py $DSTDIR/
|
|
for SOFILE in /usr/lib/python3/dist-packages/_lasso.cpython-*.so
|
|
do
|
|
ln -sv $SOFILE $DSTDIR/
|
|
done
|
|
|
|
exit 0
|