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.

66 lines
1.9 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-device-serialport
  9. PKG_VERSION:=1.04
  10. PKG_RELEASE:=4
  11. PKG_SOURCE_URL:=http://www.cpan.org/authors/id/C/CO/COOK/
  12. PKG_SOURCE:=Device-SerialPort-$(PKG_VERSION).tar.gz
  13. PKG_HASH:=d392567cb39b4ea606c0e0acafd8ed72320311b995336ece5fcefcf9b150e9d7
  14. PKG_LICENSE:=GPL-1.0-or-later Artistic-1.0-Perl
  15. PKG_MAINTAINER:=Paul Oranje <por@xs4all.nl>
  16. PKG_BUILD_DIR:=$(BUILD_DIR)/perl/Device-SerialPort-$(PKG_VERSION)
  17. include $(INCLUDE_DIR)/package.mk
  18. include ../perl/perlmod.mk
  19. define Package/perl-device-serialport
  20. SUBMENU:=Perl
  21. SECTION:=lang
  22. CATEGORY:=Languages
  23. TITLE:=A POSIX-based version of the Win32::SerialPort module
  24. URL:=http://search.cpan.org/dist/Device-SerialPort/
  25. DEPENDS:=perl +perlbase-essential +perlbase-io +perlbase-posix +perlbase-test +perlbase-xsloader
  26. endef
  27. define Package/perl-device-serialport/description
  28. A POSIX-based version of the Win32::SerialPort module
  29. that provides modem support to Perl applications
  30. endef
  31. define Build/Configure
  32. $(call perlmod/Configure,,)
  33. endef
  34. MOD_CFLAGS_PERL += $(if $(CONFIG_HOST_OS_MACOS),-I$(PKG_BUILD_DIR)/macos_compat,)
  35. define Build/Compile
  36. ifeq ($(CONFIG_HOST_OS_MACOS),y)
  37. #Zeroize macos specific system headers found by ./configure
  38. mkdir -p $(PKG_BUILD_DIR)/macos_compat
  39. mkdir -p $(PKG_BUILD_DIR)/macos_compat/sys
  40. mkdir -p $(PKG_BUILD_DIR)/macos_compat/IOKit
  41. mkdir -p $(PKG_BUILD_DIR)/macos_compat/IOKit/serial
  42. echo '' > $(PKG_BUILD_DIR)/macos_compat/sys/ttycom.h
  43. echo '' > $(PKG_BUILD_DIR)/macos_compat/IOKit/serial/ioss.h
  44. endif
  45. $(call perlmod/Compile,,)
  46. endef
  47. define Package/perl-device-serialport/install
  48. $(call perlmod/Install,$(1),Device auto/Device)
  49. endef
  50. $(eval $(call BuildPackage,perl-device-serialport))