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.

50 lines
1.3 KiB

  1. #
  2. # Copyright (C) 2017 Philip Prindeville <philipp@redfish-solutions.com>
  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-authen-sasl-xs
  9. PKG_VERSION:=1.00
  10. PKG_RELEASE:=2
  11. PKG_SOURCE_NAME:=Authen-SASL-XS
  12. PKG_SOURCE_URL:=http://www.cpan.org/authors/id/G/GB/GBARR/
  13. PKG_SOURCE:=$(PKG_SOURCE_NAME)-$(PKG_VERSION).tar.gz
  14. PKG_HASH:=1b0eaa0e7ac3a45857147d837e3d34c80c6eca1d9fdcb826a213c2a105454234
  15. PKG_LICENSE:=GPL-1.0-or-later Artistic-1.0-Perl
  16. PKG_MAINTAINER:=Philip Prindeville <philipp@redfish-solutions.com>
  17. PKG_BUILD_DIR:=$(BUILD_DIR)/perl/$(PKG_SOURCE_NAME)-$(PKG_VERSION)
  18. include $(INCLUDE_DIR)/package.mk
  19. include ../perl/perlmod.mk
  20. define Package/perl-authen-sasl-xs
  21. SUBMENU:=Perl
  22. SECTION:=lang
  23. CATEGORY:=Languages
  24. TITLE:=Authen::XS hooks into libsasl.
  25. URL:=http://search.cpan.org/dist/$(PKG_SOURCE_NAME)/
  26. # DEPENDS:=perl +perl-authen-sasl +libsasl2 +perl-devel-checklib/host
  27. DEPENDS:=perl +perl-authen-sasl +libsasl2
  28. endef
  29. define Build/Configure
  30. $(call perlmod/Configure,,)
  31. endef
  32. define Build/Compile
  33. $(call perlmod/Compile,,)
  34. endef
  35. define Package/perl-authen-sasl-xs/install
  36. $(call perlmod/Install,$(1),Authen)
  37. endef
  38. $(eval $(call BuildPackage,perl-authen-sasl-xs))