From bc1c9d86155dd77d83787172be2d5d083ccc1411 Mon Sep 17 00:00:00 2001 From: Marcel Denia Date: Sun, 28 Jun 2015 10:43:56 +0200 Subject: [PATCH] perl-http-cookies: New package Signed-off-by: Marcel Denia --- lang/perl-http-cookies/Makefile | 48 +++++++++++++++++++++++++++++++++ 1 file changed, 48 insertions(+) create mode 100644 lang/perl-http-cookies/Makefile diff --git a/lang/perl-http-cookies/Makefile b/lang/perl-http-cookies/Makefile new file mode 100644 index 0000000000..8a8c365d71 --- /dev/null +++ b/lang/perl-http-cookies/Makefile @@ -0,0 +1,48 @@ +# +# 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-http-cookies +PKG_VERSION:=6.01 +PKG_RELEASE:=1 + +PKG_SOURCE_URL:=http://www.cpan.org/authors/id/G/GA/GAAS +PKG_SOURCE:=HTTP-Cookies-$(PKG_VERSION).tar.gz +PKG_MD5SUM:=ecfd0eeb88512033352c2f13c9580f03 + +PKG_LICENSE:=GPL-1.0+ Artistic-1.0-Perl +PKG_MAINTAINER:=Marcel Denia + +PKG_BUILD_DIR:=$(BUILD_DIR)/perl/HTTP-Cookies-$(PKG_VERSION) + +include $(INCLUDE_DIR)/package.mk +include ../perl/perlmod.mk + +define Package/perl-http-cookies + SUBMENU:=Perl + SECTION:=lang + CATEGORY:=Languages + TITLE:=HTTP cookie jars + URL:=http://search.cpan.org/dist/HTTP-Cookies/ + DEPENDS:=perl +perl-http-date +perl-http-message +endef + +define Build/Configure + $(call perlmod/Configure,,) +endef + +define Build/Compile + $(call perlmod/Compile,,) +endef + +define Package/perl-http-cookies/install + $(call perlmod/Install,$(1),HTTP auto/HTTP) +endef + + +$(eval $(call BuildPackage,perl-http-cookies))