lang/perl-*: Add/update licensing information
[feed/packages.git] / lang / perl-test-harness / Makefile
1 #
2 # Copyright (C) 2014 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7
8 include $(TOPDIR)/rules.mk
9
10 PKG_NAME:=perl-test-harness
11 PKG_VERSION:=3.32
12 PKG_RELEASE:=1
13 PKG_MD5SUM:=a1241b628dc80f5271ed9235c211e55c
14
15 PKG_SOURCE_URL:=http://search.cpan.org/CPAN/authors/id/O/OV/OVID
16 PKG_SOURCE:=Test-Harness-$(PKG_VERSION).tar.gz
17
18 PKG_LICENSE:=GPLv1+ ARTISTIC
19
20 PKG_BUILD_DIR:=$(BUILD_DIR)/perl/Test-Harness-$(PKG_VERSION)
21
22 include $(INCLUDE_DIR)/package.mk
23 include ../perl/perlmod.mk
24
25 define Package/perl-test-harness
26 SUBMENU:=Perl
27 SECTION:=lang
28 CATEGORY:=Languages
29 TITLE:=Perl Test Harness
30 URL:=http://search.cpan.org/dist/Test-Harness/
31 DEPENDS:=perl
32 endef
33
34 define Build/Configure
35 $(call perlmod/Configure,,)
36 endef
37
38 define Build/Compile
39 $(call perlmod/Compile,,)
40 endef
41
42 define Package/perl-test-harness/install
43 $(call perlmod/Install,$(1),App auto/Test TAP Test)
44 endef
45
46
47 $(eval $(call BuildPackage,perl-test-harness))