shithub: aubio

Download patch

ref: d1a7a90a1401f4006d45af469daab402cbaa1d34
parent: 86a0c47e96855070224943facdccacd78014abb9
author: Paul Brossier <piem@piem.org>
date: Thu Apr 21 23:02:29 EDT 2016

Makefile: use pip install --user, also uninstall

--- a/Makefile
+++ b/Makefile
@@ -25,9 +25,10 @@
 	cd python && ./setup.py build
 
 test_python:
-	cd python && pip install .
+	cd python && pip install --user -v .
 	[ -f build/src/libaubio.[0-9].dylib ] && ( mkdir -p ~/lib && cp -prv build/src/libaubio.4.dylib ~/lib ) || true
 	LD_LIBRARY_PATH=$(PWD)/build/src python/tests/run_all_tests
+	cd python && pip uninstall -y -v aubio
 
 clean_python:
 	cd python && ./setup.py clean