Wrap text
Report abuse
|
|
# Install Bazaar 1.0 for OS X from the website
# ( http://bazaar-vcs.org/Download )
# Patch & install subversion
cd /tmp
curl -O http://subversion.tigris.org/downloads/subversion-1.4.6.tar.gz
tar xzvf subversion-1.4.6.tar.gz
cd subversion-1.4.6
curl subversion-1.4.0-metze-python-bindings.patch | patch -p1
./configure \
--without-berkeley-db \
--without-apache \
--without-apxs \
--with-ssl
make
make check-swig-py
sudo make install install-swig-py
cd ..
sudo mkdir /usr/local/lib/python2.5 /usr/local/lib/python2.5/site-packages
cd /usr/local/lib/python2.5/site-packages
sudo ln -sf ../../svn-python/* .
cat >> $HOME/.profile << \EOF
export PYTHONPATH=/usr/local/lib/python2.5/site-packages
EOF
source $HOME/.profile
# Install the bzr_svn plugin
# ( http://bazaar-vcs.org/BzrForeignBranches/Subversion )
mkdir ~/.bazaar ~/.bazaar/plugins
cd ~/.bazaar/plugins
bzr branch http://people.samba.org/bzr/jelmer/bzr-svn/stable svn
# Try it
bzr branch http://macromates.com/svn/Bundles/trunk/ textmate-bundles
|