From: Jens Wagner Date: Tue, 20 May 2025 07:42:09 +0000 (+0200) Subject: perl-class-inspector: Perl Module Class::Inspector X-Git-Url: http://git.99rst.org/?a=commitdiff_plain;h=1bc3bf261b249dd832a631f65639a006391f7ca1;p=openwrt-packages.git perl-class-inspector: Perl Module Class::Inspector Get information about a Perl class and its structure Signed-off-by: Jens Wagner --- diff --git a/lang/perl-class-inspector/Makefile b/lang/perl-class-inspector/Makefile new file mode 100644 index 000000000..cb63ca7f7 --- /dev/null +++ b/lang/perl-class-inspector/Makefile @@ -0,0 +1,42 @@ +include $(TOPDIR)/rules.mk + +PKG_NAME:=perl-class-inspector +PKG_VERSION:=1.36 +PKG_RELEASE:=1 + +PKG_SOURCE_NAME:=Class-Inspector +PKG_SOURCE_URL:=https://cpan.metacpan.org/authors/id/P/PL/PLICEASE/ +PKG_SOURCE:=$(PKG_SOURCE_NAME)-$(PKG_VERSION).tar.gz +PKG_HASH:=cc295d23a472687c24489d58226ead23b9fdc2588e522f0b5f0747741700694e +PKG_BUILD_DIR:=$(BUILD_DIR)/perl/$(PKG_SOURCE_NAME)-$(PKG_VERSION) + +PKG_MAINTAINER:=Jens Wagner +PKG_LICENSE:=GPL-1.0-or-later Artistic-1.0-Perl +PKG_LICENSE_FILES:=LICENSE + +include $(INCLUDE_DIR)/package.mk +include ../perl/perlmod.mk + +define Package/perl-class-inspector + SUBMENU:=Perl + SECTION:=lang + CATEGORY:=Languages + TITLE:=Class::Inspector - Get information about a class and its structure [Perl] + URL:=https://metacpan.org/pod/Class::Inspector + DEPENDS:=perl +perlbase-essential +perlbase-file +perlbase-base +endef + +define Build/Configure + $(call perlmod/Configure,,) +endef + +define Build/Compile + $(call perlmod/Compile,,) +endef + +define Package/perl-class-inspector/install + $(call perlmod/Install,$(1),Class) +endef + + +$(eval $(call BuildPackage,perl-class-inspector))