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.

65 lines
1.7 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-dbi
  9. PKG_VERSION:=1.643
  10. PKG_RELEASE:=1
  11. PKG_SOURCE:=DBI-$(PKG_VERSION).tar.gz
  12. PKG_SOURCE_URL:=https://www.cpan.org/authors/id/T/TI/TIMB/
  13. PKG_HASH:=8a2b993db560a2c373c174ee976a51027dd780ec766ae17620c20393d2e836fa
  14. PKG_MAINTAINER:=Marcel Denia <naoir@gmx.net>
  15. PKG_LICENSE:=GPL-1.0-or-later Artistic-1.0-Perl
  16. PKG_LICENSE_FILES:=LICENSE
  17. PKG_BUILD_DIR:=$(BUILD_DIR)/perl/DBI-$(PKG_VERSION)
  18. HOST_BUILD_DIR:=$(BUILD_DIR_HOST)/perl/DBI-$(PKG_VERSION)
  19. HOST_BUILD_DEPENDS:=perl/host
  20. include $(INCLUDE_DIR)/package.mk
  21. include $(INCLUDE_DIR)/host-build.mk
  22. include ../perl/perlmod.mk
  23. define Package/perl-dbi
  24. SUBMENU:=Perl
  25. SECTION:=lang
  26. CATEGORY:=Languages
  27. TITLE:=Database independent interface for Perl
  28. URL:=https://search.cpan.org/dist/DBI/
  29. DEPENDS:=perl +perlbase-base +perlbase-config +perlbase-cwd +perlbase-data +perlbase-dynaloader +perlbase-errno +perlbase-essential +perlbase-fcntl +perlbase-file +perlbase-io +perlbase-ipc +perlbase-scalar +perlbase-storable +perlbase-symbol +perlbase-tie +perlbase-universal +perlbase-utf8
  30. endef
  31. define Build/Configure
  32. $(call perlmod/Configure,,)
  33. endef
  34. define Build/Compile
  35. $(call perlmod/Compile,,)
  36. endef
  37. define Host/Configure
  38. $(call perlmod/host/Configure,,)
  39. endef
  40. define Host/Compile
  41. $(call perlmod/host/Compile,,)
  42. endef
  43. define Host/Install
  44. $(call perlmod/host/Install,$(1),)
  45. endef
  46. define Package/perl-dbi/install
  47. $(call perlmod/Install,$(1),DB* auto/DBI,DBI/W32ODBC.pm auto/DBI/*.h)
  48. endef
  49. $(eval $(call BuildPackage,perl-dbi))
  50. $(eval $(call HostBuild))