# # Copyright (C) 2015 OpenWrt.org # # This is free software, licensed under the GNU General Public License v2. # See /LICENSE for more information. # include $(TOPDIR)/rules.mk PKG_NAME:=perl-file-sharedir-install PKG_VERSION:=0.10 PKG_RELEASE:=2 PKG_SOURCE_URL:=http://www.cpan.org/authors/id/G/GW/GWYN PKG_SOURCE:=File-ShareDir-Install-$(PKG_VERSION).tar.gz PKG_HASH:=708af71dec4dfb5a8cf9a5e863b566714c3f65f0a76722302de5a07ee202e6f7 PKG_LICENSE:=GPL-1.0-or-later Artistic-1.0-Perl PKG_MAINTAINER:=Marcel Denia HOST_BUILD_DIR:=$(BUILD_DIR_HOST)/perl/File-ShareDir-Install-$(PKG_VERSION) HOST_BUILD_DEPENDS:=perl/host PKG_BUILD_DIR:=$(BUILD_DIR)/perl/File-ShareDir-Install-$(PKG_VERSION) include $(INCLUDE_DIR)/package.mk include $(INCLUDE_DIR)/host-build.mk include ../perl/perlmod.mk define Package/perl-file-sharedir-install SUBMENU:=Perl SECTION:=lang CATEGORY:=Languages TITLE:=Install read-only data files URL:=http://search.cpan.org/dist/File-ShareDir-Install/ DEPENDS:=perl +perlbase-essential +perlbase-extutils +perlbase-file +perlbase-io endef define Host/Configure $(call perlmod/host/Configure,,,) endef define Host/Compile $(call perlmod/host/Compile,,) endef define Host/Install $(call perlmod/host/Install,$(1),) endef define Build/Configure $(call perlmod/Configure,,) endef define Build/Compile $(call perlmod/Compile,,) endef define Package/perl-file-sharedir-install/install $(call perlmod/Install,$(1),File auto/File) endef $(eval $(call BuildPackage,perl-file-sharedir-install)) $(eval $(call HostBuild))