diff --git a/fm-api/debian/control b/fm-api/debian/control new file mode 100644 index 0000000..a3bc912 --- /dev/null +++ b/fm-api/debian/control @@ -0,0 +1,14 @@ +Source: fm-api +Priority: extra +Maintainer: Marcela Rosales +Build-Depends: python-setuptools, + python-all, + debhelper, + dh-python +Standards-Version: 3.9.6 + +Package: fm-api +Architecture: all +Depends: ${misc:Depends}, + ${python:Depends} +Description: This package contains the fm-api project. diff --git a/fm-api/debian/rules b/fm-api/debian/rules new file mode 100644 index 0000000..b54cfd7 --- /dev/null +++ b/fm-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 +