shithub: aubio

Download patch

ref: bee6e965c0212093724680bacf3c3f6594fefe70
parent: 7faef588dd2616a82984581c760b6fbba2298aac
author: Paul Brossier <piem@piem.org>
date: Fri Dec 2 06:12:46 EST 2016

Makefile: remove tar commands for now

--- a/Makefile
+++ b/Makefile
@@ -12,8 +12,6 @@
 DESTDIR:=$(PWD)/build/dist
 PYDESTDIR:=$(PWD)/build/pydist
 
-BUILDID=$(shell mktemp -d -p $(PWD)/dist/)
-
 # default install locations
 PREFIX?=/usr/local
 EXEC_PREFIX?=$(PREFIX)
@@ -58,14 +56,10 @@
 list_installed:
 	find $(DESTDIR) -ls | \
 		sed 's|$(DESTDIR)|/«destdir»|'
-	tar --full-time --mtime=$(PWD)/src/aubio.h -jcvf $(BUILDID)/aubio-dist.tar.bz2 -C $(DESTDIR)/ .
 
 list_installed_python:
 	( find $(PYDESTDIR) -ls || make list_installed_python_package ) | \
 		sed 's|$(PYDESTDIR)|/«pydestdir»|'
-	[ -d $(PYDESTDIR) ] && \
-		tar --full-time --mtime=$(PWD)/src/aubio.h -jcvf $(BUILDID)/python-aubio-dist.tar.bz2 -C $(PYDESTDIR)/ . || \
-		true
 
 list_installed_python_package:
 	pip show -f aubio
@@ -75,7 +69,6 @@
 list_installed_python_package_content:
 	( [ -d $(PACKAGE_LOCATION) ] && find $(PACKAGE_LOCATION) -ls ) || \
 		unzip -l $(PACKAGE_LOCATION)
-	cp -prv $(PACKAGE_LOCATION) $(BUILDID)
 
 list_all_installed: list_installed list_installed_python