Makefile 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  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.634
  10. PKG_RELEASE:=1
  11. PKG_SOURCE_URL:=http://www.cpan.org/authors/id/T/TI/TIMB/
  12. PKG_SOURCE:=DBI-$(PKG_VERSION).tar.gz
  13. PKG_MD5SUM:=4ad15a9c2cc9b68e3fe1f5cadf9cdb30
  14. PKG_LICENSE:=GPL-1.0+ Artistic-1.0-Perl
  15. PKG_MAINTAINER:=Marcel Denia <naoir@gmx.net>
  16. PKG_BUILD_DIR:=$(BUILD_DIR)/perl/DBI-$(PKG_VERSION)
  17. HOST_BUILD_DIR:=$(BUILD_DIR_HOST)/perl/DBI-$(PKG_VERSION)
  18. HOST_BUILD_DEPENDS:=perl/host
  19. include $(INCLUDE_DIR)/package.mk
  20. include $(INCLUDE_DIR)/host-build.mk
  21. include ../perl/perlmod.mk
  22. define Package/perl-dbi
  23. SUBMENU:=Perl
  24. SECTION:=lang
  25. CATEGORY:=Languages
  26. TITLE:=Database independent interface for Perl
  27. URL:=http://search.cpan.org/dist/DBI/
  28. 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
  29. endef
  30. define Build/Configure
  31. $(call perlmod/Configure,,)
  32. endef
  33. define Build/Compile
  34. $(call perlmod/Compile,,)
  35. endef
  36. define Host/Configure
  37. $(call perlmod/host/Configure,,)
  38. endef
  39. define Host/Compile
  40. $(call perlmod/host/Compile,,)
  41. endef
  42. define Host/Install
  43. $(call perlmod/host/Install,$(1),)
  44. endef
  45. define Package/perl-dbi/install
  46. $(call perlmod/Install,$(1),DB* auto/DBI,DBI/W32ODBC.pm auto/DBI/*.h)
  47. endef
  48. $(eval $(call BuildPackage,perl-dbi))
  49. $(eval $(call HostBuild))