diff --git a/fm-rest-api/debian/control b/fm-rest-api/debian/control new file mode 100644 index 00000000..bbdb44fa --- /dev/null +++ b/fm-rest-api/debian/control @@ -0,0 +1,15 @@ +Source: fm-rest-api +Priority: extra +Maintainer: Marcela Rosales +Build-Depends: python-setuptools, + python-all, + debhelper, + dh-python, + fm-common-dev +Standards-Version: 3.9.6 + +Package: fm-rest-api +Architecture: all +Depends: ${misc:Depends}, + ${python:Depends} +Description: This package contains the fm-rest-api project. diff --git a/fm-rest-api/debian/rules b/fm-rest-api/debian/rules new file mode 100644 index 00000000..b54cfd7e --- /dev/null +++ b/fm-rest-api/debian/rules @@ -0,0 +1,7 @@ +#!/usr/bin/make -f + +export PYBUILD_INSTALL_ARGS=--install-data=/usr/share --prefix=/usr + +%: + dh $@ --with python2 --buildsystem=pybuild +