Changeset - 58a634ab0f4c
[Not reviewed]
default
0 1 0
Drew Perttula - 12 years ago 2013-06-06 04:28:54
drewp@bigasterisk.com
bin/python symlink
Ignore-this: bc638579e4d0a6f5bc6e83586f2cfe82
1 file changed with 1 insertions and 0 deletions:
0 comments (0 inline, 0 general)
makefile
Show inline comments
 
@@ -14,29 +14,30 @@ install_python_deps: link_to_sys_package
 

	
 
DP=/usr/lib/python2.7/dist-packages
 
SP=env/lib/python2.7/site-packages
 

	
 
link_to_sys_packages:
 
	# http://stackoverflow.com/questions/249283/virtualenv-on-ubuntu-with-no-site-packages
 
	ln -sf $(DP)/glib $(SP)/
 
	ln -sf $(DP)/gobject $(SP)/
 
	ln -sf $(DP)/cairo $(SP)/
 
	ln -sf $(DP)/gtk-2.0 $(SP)/
 
	ln -sf $(DP)/pygtk.py $(SP)/
 
	ln -sf $(DP)/pygtk.pth $(SP)/
 
	ln -sf $(DP)/pygst.pth $(SP)/
 
	ln -sf $(DP)/pygst.py $(SP)/
 
	ln -sf $(DP)/gst-0.10 $(SP)/
 
	ln -sf $(DP)/PIL $(SP)/
 
	ln -sf $(DP)/PIL.pth $(SP)/
 

	
 
PYTHON=/usr/bin/pypy
 
PYTHON=/usr/bin/python
 

	
 
create_virtualenv:
 
	mkdir -p env
 
	virtualenv -p $(PYTHON) env
 
	ln -sf ../env/bin/python bin/python
 

	
 
tkdnd_build:
 
	cd tkdnd/trunk
 
	./configure
 
	make
0 comments (0 inline, 0 general)