Edgewall Software

Changes between Initial Version and Version 1 of Ticket #13257, comment 13


Ignore:
Timestamp:
Apr 10, 2020, 7:06:11 AM (4 years ago)
Author:
Ryan J Ollos

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #13257, comment 13

    initial v1  
    33
    44Thanks. When building from source I've been symlinking from the python environment to `svn-python/svn` and `svn-python/libsvn`, which I think is equivalent.
     5
     6{{{#!sh
     7./configure --with-apr=$(brew --prefix apr) --with-apr-util=$(brew --prefix apr-util) --with-py3c=./py3c --prefix=$(pwd)/local
     8make all swig-py install install-swig-py
     9
     10svn_python=$(pwd)/local/lib/svn-python
     11site_packages=$(find $(pyenv prefix)/ -name "site-packages" -print)
     12ln -sf "$svn_python/svn" "$site_packages/"
     13ln -sf "$svn_python/libsvn" "$site_packages/"
     14echo "$svn_python/libsvn" > "$site_packages/svn.pth"
     15}}}