You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

48 lines
1.1 KiB

  1. #
  2. # Copyright (C) 2015 OpenWrt.org
  3. #
  4. # This is free software, licensed under the GNU General Public License v2.
  5. # See /LICENSE for more information.
  6. #
  7. include $(TOPDIR)/rules.mk
  8. PKG_NAME:=perl-file-listing
  9. PKG_VERSION:=6.04
  10. PKG_RELEASE:=2
  11. PKG_SOURCE_URL:=http://www.cpan.org/authors/id/G/GA/GAAS
  12. PKG_SOURCE:=File-Listing-$(PKG_VERSION).tar.gz
  13. PKG_HASH:=1e0050fcd6789a2179ec0db282bf1e90fb92be35d1171588bd9c47d52d959cf5
  14. PKG_LICENSE:=GPL-1.0-or-later Artistic-1.0-Perl
  15. PKG_MAINTAINER:=Marcel Denia <naoir@gmx.net>
  16. PKG_BUILD_DIR:=$(BUILD_DIR)/perl/File-Listing-$(PKG_VERSION)
  17. include $(INCLUDE_DIR)/package.mk
  18. include ../perl/perlmod.mk
  19. define Package/perl-file-listing
  20. SUBMENU:=Perl
  21. SECTION:=lang
  22. CATEGORY:=Languages
  23. TITLE:=Parse directory listing
  24. URL:=http://search.cpan.org/dist/File-Listing/
  25. DEPENDS:=perl +perl-http-date +perlbase-essential
  26. endef
  27. define Build/Configure
  28. $(call perlmod/Configure,,)
  29. endef
  30. define Build/Compile
  31. $(call perlmod/Compile,,)
  32. endef
  33. define Package/perl-file-listing/install
  34. $(call perlmod/Install,$(1),File auto/File)
  35. endef
  36. $(eval $(call BuildPackage,perl-file-listing))