summaryrefslogtreecommitdiffstats
path: root/Makefile
blob: 28d3b707d3feb9711d74fc83bc33d8ac36f56730 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#
# Makefile for Deluge
#
PYVER=`python -c "import sys; print sys.version[:3]"`
PREFIX ?= /usr
DESTDIR ?= ./

all:
	python setup.py build

tarball:
	python setup.py sdist
	mv dist/deluge-*.tar.gz $(DESTDIR)

install:
	python setup.py install --prefix=$(PREFIX) && /usr/bin/update-desktop-database;

clean:
	python setup.py clean
	rm -rf ./build
	rm msgfmt.pyc
	find . -name *.pyc -exec rm {} \;

uninstall:
	-rm $(PREFIX)/bin/deluge
	-rm -r $(PREFIX)/lib/python${PYVER}/site-packages/deluge
	-rm -r $(PREFIX)/lib/python${PYVER}/site-packages/deluge-*.egg-info
	-rm -r $(PREFIX)/share/deluge
	-find ${PREFIX}/share/locale -name deluge.mo -exec rm {} \;
	-rm $(PREFIX)/share/applications/deluge.desktop
	-rm $(PREFIX)/share/pixmaps/deluge.png