Codebase list mapproxy / upstream/1.13.1 Makefile
upstream/1.13.1

Tree @upstream/1.13.1 (Download .tar.gz)

Makefile @upstream/1.13.1raw · history · blame

# Makefile for building MapProxy-Debian-packages
#
# (c) 2011 Stephan Holl, <stephan.holl@intevation.de>
#

PYTHON=`which python`
DESTDIR=/
BUILDIR=$(CURDIR)/debian/mapproxy
PROJECT=MapProxy
VERSION=1.1.0

all:
	@echo "make source - Create source package"
	@echo "make install - Install on local system"
	@echo "make buildrpm - Generate a rpm package"
	@echo "make builddeb - Generate a deb package"
	@echo "make clean - Get rid of scratch and byte files"

source:
	$(PYTHON) setup.py sdist $(COMPILE)

install:
	$(PYTHON) setup.py install --root $(DESTDIR) $(COMPILE)

buildrpm:
	$(PYTHON) setup.py bdist_rpm

builddeb:
	# build the source package in the parent directory
	# then rename it to project_version.orig.tar.gz
	$(PYTHON) setup.py sdist $(COMPILE) --dist-dir=../
	rename -f 's/$(PROJECT)-(.*)\.tar\.gz/$(PROJECT)_$$1\.orig\.tar\.gz/' ../*
	# build the package
	dpkg-buildpackage -i -I -rfakeroot

clean:
	$(PYTHON) setup.py clean
	fakeroot $(MAKE) -f $(CURDIR)/debian/rules clean
	rm -rf build/ MANIFEST
	find . -name '*.pyc' -delete