summaryrefslogtreecommitdiff
path: root/tmdbv3api/debian/rules
diff options
context:
space:
mode:
Diffstat (limited to 'tmdbv3api/debian/rules')
-rwxr-xr-xtmdbv3api/debian/rules10
1 files changed, 10 insertions, 0 deletions
diff --git a/tmdbv3api/debian/rules b/tmdbv3api/debian/rules
new file mode 100755
index 0000000..119a7cb
--- /dev/null
+++ b/tmdbv3api/debian/rules
@@ -0,0 +1,10 @@
+#!/usr/bin/make -f
+# You must remove unused comment lines for the released package.
+#export DH_VERBOSE = 1
+#export DEB_BUILD_MAINT_OPTIONS = hardening=+all
+#export DEB_CFLAGS_MAINT_APPEND = -Wall -pedantic
+#export DEB_LDFLAGS_MAINT_APPEND = -Wl,-O1
+#export PYBUILD_NAME = tmdbv3api
+
+%:
+ dh $@ --with python3 --buildsystem pybuild
bgstack15