summaryrefslogtreecommitdiff
path: root/debian/rules
diff options
context:
space:
mode:
authorMicah Anderson <micah@riseup.net>2014-08-11 16:32:05 -0400
committerMicah Anderson <micah@riseup.net>2014-08-11 16:32:05 -0400
commit225af56ba5090552ea6f9a8bbf35bfaab97d97f1 (patch)
tree619d9973b4c43d50f68f877a7b4a0ee69b8eb250 /debian/rules
parent686958a9db9b140c9665af8fd001e7032a37a46e (diff)
add upstream sourceupstream
Diffstat (limited to 'debian/rules')
-rwxr-xr-xdebian/rules29
1 files changed, 0 insertions, 29 deletions
diff --git a/debian/rules b/debian/rules
deleted file mode 100755
index 31da045..0000000
--- a/debian/rules
+++ /dev/null
@@ -1,29 +0,0 @@
-#!/usr/bin/make -f
-# -*- makefile -*-
-
-# Uncomment this to turn on verbose mode.
-#export DH_VERBOSE=1
-
-ifeq ($(DEB_BUILD_ARCH_OS), kfreebsd)
- DO_TEST = no
-endif
-
-override_dh_auto_configure:
- dh_auto_configure -- --with-system-pgm
-
-override_dh_auto_test:
-ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS)))
-ifneq ($(DO_TEST), no)
- dh_auto_test
-else
- -dh_auto_test
-endif
-endif
-
-override_dh_strip:
- dh_strip --dbg-package=libzmq3-dbg
-
-%:
- dh $@ --with=autoreconf
-
-.PHONY: override_dh_auto_configure override_dh_strip