mirror of
https://github.com/tahoe-lafs/tahoe-lafs.git
synced 2024-12-26 08:01:06 +00:00
22 lines
525 B
Plaintext
22 lines
525 B
Plaintext
|
#! /usr/bin/make -f
|
||
|
# Uncomment this to turn on verbose mode.
|
||
|
#export DH_VERBOSE=1
|
||
|
|
||
|
DEB_PYTHON_SYSTEM=pycentral
|
||
|
|
||
|
include /usr/share/cdbs/1/rules/debhelper.mk
|
||
|
include /usr/share/cdbs/1/class/python-distutils.mk
|
||
|
|
||
|
STAGING_DIR=$(CURDIR)/debian/allmydata-tahoe
|
||
|
|
||
|
install/allmydata-tahoe::
|
||
|
mkdir -pm755 $(STAGING_DIR)
|
||
|
cd src/pyfec && python setup.py install --root=$(STAGING_DIR)
|
||
|
cd src/Crypto && python setup.py install --root=$(STAGING_DIR)
|
||
|
python setup.py install --root=$(STAGING_DIR)
|
||
|
|
||
|
dh_pycentral
|
||
|
|
||
|
clean::
|
||
|
-rm -rf build
|