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.3 KiB

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