#!/usr/bin/make -f
# -*- mode: makefile; coding: utf-8 -*-
# Copyright © 2013-2015, 2017 Jonas Smedegaard <dr@jones.dk>
# Description: Main Debian packaging script for match::simple
#
# 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 <http://www.gnu.org/licenses/>.

include /usr/share/cdbs/1/rules/upstream-tarball.mk
include /usr/share/cdbs/1/rules/utils.mk
include /usr/share/cdbs/1/class/perl-makemaker.mk
include /usr/share/cdbs/1/rules/debhelper.mk

pkg = $(DEB_SOURCE_PACKAGE)

DEB_UPSTREAM_PACKAGE = match-simple
#DEB_UPSTREAM_URL = http://www.cpan.org/modules/by-module/match
DEB_UPSTREAM_URL = http://www.cpan.org/CPAN/authors/id/T/TO/TOBYINK

# needed by upstream build and (always/often) at runtime
deps = libexporter-tiny-perl
deps +=, perl (>= 5.19.5) | libscalar-list-utils-perl (>= 1:1.33)
deps-recommend = libsub-infix-perl (>= 0.004)

# Needed by upstream testsuite
deps-test = libtest-fatal-perl

# needed (often) at runtime
recommends = libmatch-simple-xs-perl

CDBS_BUILD_DEPENDS +=, $(deps), $(deps-recommend), $(deps-test)
CDBS_DEPENDS_$(pkg) = $(deps)
CDBS_RECOMMENDS_$(pkg) = $(deps-recommend), $(recommends)
