#!/usr/bin/make -f # -*- mode: makefile; coding: utf-8 -*- # Copyright 2013, Jonas Smedegaard # Description: Main Debian packaging script for Net::AMQP # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 3, or (at your option) # any later version. # # This program is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . include /usr/share/cdbs/1/rules/upstream-tarball.mk include /usr/share/cdbs/1/rules/utils.mk include /usr/share/cdbs/1/class/perl-build.mk include /usr/share/cdbs/1/rules/debhelper.mk pkg = $(DEB_SOURCE_PACKAGE) DEB_UPSTREAM_PACKAGE = Net-AMQP DEB_UPSTREAM_URL = http://www.cpan.org/authors/id/C/CH/CHIPS DEB_UPSTREAM_TARBALL_MD5 = d48757f7687c1e434929253bac95be25 # DFSG-nonfree AMQP license DEB_UPSTREAM_REPACKAGE_EXCLUDES = spec/ lib/Net/AMQP/Protocol/v0_8.pm # Needed by upstream build and (always/often) at runtime perl-deps = class-accessor class-data-inheritable xml-libxml deps = $(patsubst %,$(comma) lib%-perl,$(perl-deps)) deps-recommend = amqp-specs (>= 1-0r0-2~) # Needed by upstream build bdeps = libmodule-build-perl (>= 0.400000) | perl (>= 5.17.1) # Needed by upstream testsuite deps-test = libtest-deep-perl, libparse-recdescent-perl CDBS_BUILD_DEPENDS +=, $(deps), $(deps-recommend), $(bdeps), $(deps-test) CDBS_DEPENDS_$(pkg) = $(deps) CDBS_RECOMMENDS_$(pkg) = $(deps-recommend) # TODO: install when Net::AMQP::Protocol::v0_8 no longer stripped #DEB_INSTALL_EXAMPLES_$(pkg) = eg/* # put aside test depending on stripped code DEB_UPSTREAM_CRUFT_MOVE = t/03_standalone_0_8.t # use separately packaged spec files common-configure-arch common-configure-indep:: mkdir -p spec ln -sf /usr/share/amqp/specs/0-8/amqp0-8.stripped.xml spec/amqp0-8.xml ln -sf /usr/share/amqp/specs/0-9/amqp0-9.stripped.xml spec/amqp0-9.xml ln -sf /usr/share/amqp/specs/0-9-1/amqp0-9-1.stripped.xml spec/amqp0-9-1.xml ln -sf /usr/share/amqp/specs/0-10/amqp.0-10.stripped.xml spec/amqp0-10.xml ln -sf /usr/share/amqp/specs/0-8-qpid/amqp0-8-qpid.stripped.xml spec/qpid.amqp0-8.xml clean:: rm -rf spec