diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/Makefile | 13 | ||||
-rw-r--r-- | src/setup.py | 4 |
2 files changed, 7 insertions, 10 deletions
diff --git a/src/Makefile b/src/Makefile index c3a3660..a720671 100644 --- a/src/Makefile +++ b/src/Makefile @@ -1,14 +1,11 @@ -# vim: shiftwidth=4 tabstop=4 noexpandtab +# vim: shiftwidth=4 softtabstop=4 tabstop=4 noexpandtab + DESTDIR="" # leave empty for the current system or provide a fakeroot here -.PHONY: all clean install -all: - python setup.py build +.PHONY: install -clean: - rm -rf build -install: all - python setup.py install --root=$(DESTDIR) --optimize=1 --skip-build +install: + python3 setup.py install --root=$(DESTDIR) --optimize=1 --skip-build diff --git a/src/setup.py b/src/setup.py index 4279fe8..e73eef0 100644 --- a/src/setup.py +++ b/src/setup.py @@ -1,12 +1,12 @@ #!/usr/bin/python3 -# vim: shiftwidth=4 tabstop=4 expandtab +# vim: shiftwidth=4 softtabstop=4 tabstop=4 expandtab from distutils.core import setup setup(name="xbackup", - version="0.0.1", + version="0.1.0", description="Convenience wrapper around the Borg backup tool", author="xengineering", author_email="me@xengineering.eu", |