Makefile 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. #
  2. # Copyright (C) 2014, 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-compress-bzip2
  9. PKG_VERSION:=2.24
  10. PKG_RELEASE:=1
  11. PKG_SOURCE_URL:=http://www.cpan.org/authors/id/R/RU/RURBAN/
  12. PKG_SOURCE:=Compress-Bzip2-$(PKG_VERSION).tar.gz
  13. PKG_MD5SUM:=d5ef04d1e51fe45743b3044abad967d2
  14. PKG_LICENSE:=GPL-1.0+ Artistic-1.0-Perl
  15. PKG_MAINTAINER:=Marcel Denia <naoir@gmx.net>
  16. PKG_BUILD_DIR:=$(BUILD_DIR)/perl/Compress-Bzip2-$(PKG_VERSION)
  17. include $(INCLUDE_DIR)/package.mk
  18. include ../perl/perlmod.mk
  19. define Package/perl-compress-bzip2
  20. SUBMENU:=Perl
  21. SECTION:=lang
  22. CATEGORY:=Languages
  23. TITLE:=Perl interface to bzip2 compression library
  24. URL:=http://search.cpan.org/dist/Compress-Bzip2/
  25. DEPENDS:=perl +libbz2 +perlbase-autoloader +perlbase-config +perlbase-essential +perlbase-fcntl +perlbase-file +perlbase-getopt +perlbase-test +perlbase-xsloader
  26. endef
  27. define Build/Configure
  28. $(call perlmod/Configure,,BUILD_BZLIB=0)
  29. endef
  30. define Build/Compile
  31. $(call perlmod/Compile,,)
  32. endef
  33. define Package/perl-compress-bzip2/install
  34. $(call perlmod/Install,$(1),Compress auto/Compress)
  35. endef
  36. $(eval $(call BuildPackage,perl-compress-bzip2))