Fix issue where python packages are installed in the incorrect location

email_reminders
Zachary Seguin 7 years ago
parent 694df1ec47
commit f299412d56
  1. 14
      debian/changelog
  2. 4
      debian/rules

14
debian/changelog vendored

@ -1,3 +1,17 @@
library (1.0-3jessie0) jessie; urgency=medium
* Modify build parameters so that library is installed in dist-packages
instead of site-packages
-- Zachary Seguin <ztseguin@csclub.uwaterloo.ca> Sat, 20 Feb 2016 15:49:14 -0500
library (1.0-2trusty0) trusty; urgency=medium
* Modify build parameters so that library is installed in dist-packages
instead of site-packages
-- Zachary Seguin <ztseguin@csclub.uwaterloo.ca> Sat, 20 Feb 2016 15:49:14 -0500
library (1.0-2) trusty; urgency=medium
* Resolved crashes

4
debian/rules vendored

@ -1,6 +1,6 @@
#!/usr/bin/make -f
build:
build:
clean:
dh_testdir
@ -13,7 +13,7 @@ install: build
dh_testdir
dh_testroot
dh_installdirs
python3 setup.py -q build --build-base=build-library install --no-compile -O0 --prefix=/usr --root=debian/library
python3 setup.py -q build --build-base=build-library install --no-compile -O0 --install-layout=deb --root=debian/library
binary-arch: build install
dh_testdir

Loading…
Cancel
Save