0
0
mirror of https://github.com/openwrt/packages.git synced 2025-07-24 14:02:53 +00:00
Files
Josef Schlehofer e9f4aa38ef treewide: move all perl packages into its own folder
This makes it in sync with Python packages.
Python packages has its own place in /lang/python
Perl does not, so this fixes it.

Signed-off-by: Josef Schlehofer <pepe.schlehofer@gmail.com>
2025-07-06 16:21:08 +02:00

48 lines
1.2 KiB
Makefile

#
# Copyright (C) 2014 - 2016 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.42
PKG_RELEASE:=1
PKG_SOURCE:=Test-Harness-$(PKG_VERSION).tar.gz
PKG_SOURCE_URL:=https://cpan.metacpan.org/authors/id/L/LE/LEONT
PKG_HASH:=0fd90d4efea82d6e262e6933759e85d27cbcfa4091b14bf4042ae20bab528e53
PKG_BUILD_DIR:=$(BUILD_DIR)/perl/Test-Harness-$(PKG_VERSION)
PKG_MAINTAINER:=Marcel Denia <naoir@gmx.net>
PKG_LICENSE:=GPL-1.0-or-later Artistic-1.0-Perl
include $(INCLUDE_DIR)/package.mk
include ../perlmod.mk
define Package/perl-test-harness
SUBMENU:=Perl
SECTION:=lang
CATEGORY:=Languages
TITLE:=Perl Test Harness
URL:=https://search.cpan.org/dist/Test-Harness/
DEPENDS:=perl +perlbase-base +perlbase-benchmark +perlbase-config +perlbase-essential +perlbase-file +perlbase-getopt +perlbase-io +perlbase-posix +perlbase-text
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))