#
# Copyright (C) 2014 OpenWrt.org
#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
#

include $(TOPDIR)/rules.mk

PKG_NAME:=perl-test-harness
PKG_VERSION:=3.32
PKG_RELEASE:=1
PKG_MD5SUM:=a1241b628dc80f5271ed9235c211e55c

PKG_SOURCE_URL:=http://search.cpan.org/CPAN/authors/id/O/OV/OVID
PKG_SOURCE:=Test-Harness-$(PKG_VERSION).tar.gz

PKG_LICENSE:=GPLv1+ ARTISTIC

PKG_BUILD_DIR:=$(BUILD_DIR)/perl/Test-Harness-$(PKG_VERSION)

include $(INCLUDE_DIR)/package.mk
include ../perl/perlmod.mk

define Package/perl-test-harness
SUBMENU:=Perl
SECTION:=lang
CATEGORY:=Languages
TITLE:=Perl Test Harness
URL:=http://search.cpan.org/dist/Test-Harness/
DEPENDS:=perl
endef

define Build/Configure
	$(call perlmod/Configure,,)
endef

define Build/Compile
	$(call perlmod/Compile,,)
endef

define Package/perl-test-harness/install
	$(call perlmod/Install,$(1),App auto/Test TAP Test)
endef


$(eval $(call BuildPackage,perl-test-harness))
