2014-07-15 22:18:50 +00:00
|
|
|
#
|
2014-07-23 06:34:40 +00:00
|
|
|
# Copyright (C) 2011-2014 OpenWrt.org
|
2014-07-15 22:18:50 +00:00
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
|
|
|
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
|
|
|
PKG_NAME:=perl-net-telnet
|
2014-07-15 22:24:28 +00:00
|
|
|
PKG_VERSION:=3.04
|
2019-09-02 13:15:08 +00:00
|
|
|
PKG_RELEASE:=4
|
2014-07-15 22:18:50 +00:00
|
|
|
|
2014-07-23 07:05:48 +00:00
|
|
|
PKG_SOURCE_URL:=http://www.cpan.org/authors/id/J/JR/JROGERS/
|
2014-07-15 22:18:50 +00:00
|
|
|
PKG_SOURCE:=Net-Telnet-$(PKG_VERSION).tar.gz
|
2017-08-28 04:28:09 +00:00
|
|
|
PKG_HASH:=e64d567a4e16295ecba949368e7a6b8b5ae2a16b3ad682121d9b007dc5d2a37a
|
2014-07-15 22:18:50 +00:00
|
|
|
|
2019-09-02 13:15:08 +00:00
|
|
|
PKG_LICENSE:=GPL-1.0-or-later Artistic-1.0-Perl
|
2014-07-23 07:17:08 +00:00
|
|
|
PKG_MAINTAINER:=Marcel Denia <naoir@gmx.net>
|
2014-07-23 06:59:14 +00:00
|
|
|
|
2014-07-15 22:18:50 +00:00
|
|
|
PKG_BUILD_DIR:=$(BUILD_DIR)/perl/Net-Telnet-$(PKG_VERSION)
|
|
|
|
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
include ../perl/perlmod.mk
|
|
|
|
|
|
|
|
define Package/perl-net-telnet
|
2014-07-23 07:11:41 +00:00
|
|
|
SUBMENU:=Perl
|
|
|
|
SECTION:=lang
|
|
|
|
CATEGORY:=Languages
|
|
|
|
TITLE:=Telnet client
|
|
|
|
URL:=http://search.cpan.org/dist/Net-Telnet/
|
2015-06-28 14:52:32 +00:00
|
|
|
DEPENDS:=perl +perlbase-essential +perlbase-socket +perlbase-symbol
|
2014-07-15 22:18:50 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Build/Configure
|
|
|
|
$(call perlmod/Configure,,)
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Build/Compile
|
|
|
|
$(call perlmod/Compile,,)
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/perl-net-telnet/install
|
|
|
|
$(call perlmod/Install,$(1),Net auto/Net)
|
|
|
|
endef
|
|
|
|
|
2014-07-23 07:11:41 +00:00
|
|
|
|
2014-07-15 22:18:50 +00:00
|
|
|
$(eval $(call BuildPackage,perl-net-telnet))
|