net/quagga-unstable: fix compile issue on FreeBSD 8.1
[openwrt/svn-archive/archive.git] / lang / perl-uri / Makefile
1
2 include $(TOPDIR)/rules.mk
3
4 PKG_NAME:=perl-uri
5 PKG_VERSION:=1.36
6 PKG_RELEASE:=1
7 PKG_MD5SUM:=a97bbdd38b31c6b2672fdc3060fae34b
8
9 PKG_SOURCE_URL:=http://search.cpan.org/CPAN/authors/id/G/GA/GAAS
10 PKG_SOURCE:=URI-$(PKG_VERSION).tar.gz
11
12 PKG_BUILD_DIR:=$(BUILD_DIR)/perl/URI-$(PKG_VERSION)
13
14 include $(INCLUDE_DIR)/package.mk
15 include ../perl/perlmod.mk
16
17 define Package/perl-uri
18 SUBMENU:=Perl
19 SECTION:=lang
20 CATEGORY:=Languages
21 TITLE:=Manipulates and accesses URI strings
22 URL:=http://search.cpan.org/dist/URI/
23 DEPENDS:=perl
24 endef
25
26 define Build/Configure
27 $(call perlmod/Configure,,)
28 endef
29
30 define Build/Compile
31 $(call perlmod/Compile,,)
32 endef
33
34 define Package/perl-uri/install
35 $(call perlmod/Install,$(1),URI URI.pm)
36 endef
37
38
39 $(eval $(call BuildPackage,perl-uri))