2014-02-08 17:54:20 +00:00
|
|
|
#
|
|
|
|
# Copyright (C) 2013 OpenWrt.org
|
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
2008-07-03 12:31:32 +00:00
|
|
|
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
|
|
|
PKG_NAME:=perl-www
|
2014-02-08 17:54:20 +00:00
|
|
|
PKG_VERSION:=5.837
|
2008-07-03 12:31:32 +00:00
|
|
|
PKG_RELEASE:=1
|
2014-02-08 17:54:20 +00:00
|
|
|
PKG_MD5SUM:=9bbf1bce482b0bac98bb4f04253c03d0
|
2008-07-03 12:31:32 +00:00
|
|
|
|
|
|
|
PKG_SOURCE_URL:=http://search.cpan.org/CPAN/authors/id/G/GA/GAAS
|
|
|
|
PKG_SOURCE:=libwww-perl-$(PKG_VERSION).tar.gz
|
|
|
|
|
|
|
|
PKG_BUILD_DIR:=$(BUILD_DIR)/perl/libwww-perl-$(PKG_VERSION)
|
|
|
|
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
include ../perl/perlmod.mk
|
|
|
|
|
|
|
|
define Package/perl-www
|
|
|
|
SUBMENU:=Perl
|
|
|
|
SECTION:=lang
|
|
|
|
CATEGORY:=Languages
|
|
|
|
TITLE:=WWW client/server library for Perl (aka LWP)
|
|
|
|
URL:=http://search.cpan.org/dist/libwww-perl/
|
2014-02-08 17:54:20 +00:00
|
|
|
DEPENDS:=perl +perl-html-parser +perl-html-tagset +perl-uri
|
2008-07-03 12:31:32 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Build/Configure
|
|
|
|
$(call perlmod/Configure,-n,)
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Build/Compile
|
|
|
|
$(call perlmod/Compile,,)
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/perl-www/install
|
|
|
|
$(call perlmod/Install,$(1),File HTML HTTP LWP LWP.pm Net WWW)
|
|
|
|
endef
|
|
|
|
|
|
|
|
|
|
|
|
$(eval $(call BuildPackage,perl-www))
|