mirror of
https://github.com/tahoe-lafs/tahoe-lafs.git
synced 2024-12-20 05:28:04 +00:00
22 lines
560 B
Makefile
22 lines
560 B
Makefile
#! /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/zfec && python setup.py install --single-version-externally-managed --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
|