mirror of
https://github.com/codex-storage/deluge.git
synced 2025-02-08 01:24:03 +00:00
15 lines
144 B
Makefile
15 lines
144 B
Makefile
#
|
|
# Makefile for Deluge
|
|
#
|
|
|
|
VERSION ?= 0.5.1
|
|
|
|
PREFIX ?= /usr
|
|
|
|
|
|
all:
|
|
python setup.py build
|
|
|
|
install:
|
|
python setup.py install --prefix=$(PREFIX)
|