Files
packages/lang/perl/perl-test-warn/Makefile
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.1 KiB
Makefile

#
# Copyright (C) 2015 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-warn
PKG_VERSION:=0.36
PKG_RELEASE:=1
PKG_SOURCE:=Test-Warn-$(PKG_VERSION).tar.gz
PKG_SOURCE_URL:=https://cpan.metacpan.org/authors/id/B/BI/BIGJ
PKG_HASH:=ecbca346d379cef8d3c0e4ac0c8eb3b2613d737ffaaeae52271c38d7bf3c6cda
PKG_BUILD_DIR:=$(BUILD_DIR)/perl/Test-Warn-$(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-warn
SUBMENU:=Perl
SECTION:=lang
CATEGORY:=Languages
TITLE:=Perl extension to test methods for warnings
URL:=https://search.cpan.org/dist/Test-Warn/
DEPENDS:=perl +perl-sub-uplevel +perlbase-essential +perlbase-test
endef
define Build/Configure
$(call perlmod/Configure,,)
endef
define Build/Compile
$(call perlmod/Compile,,)
endef
define Package/perl-test-warn/install
$(call perlmod/Install,$(1),Test auto/Test)
endef
$(eval $(call BuildPackage,perl-test-warn))