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.

53 lines
1.4 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. define Build/Compile
  35. $(call perlmod/Compile,,)
  36. endef
  37. define Package/perl-device-serialport/install
  38. $(call perlmod/Install,$(1),Device auto/Device)
  39. endef
  40. $(eval $(call BuildPackage,perl-device-serialport))