mirror of
https://github.com/openwrt/packages.git
synced 2025-02-07 06:59:51 +00:00
532f6e0782
Signed-off-by: krant <aleksey.vasilenko@gmail.com>
52 lines
1.2 KiB
Makefile
52 lines
1.2 KiB
Makefile
#
|
|
# 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:=make
|
|
PKG_VERSION:=4.4.1
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_SOURCE_URL:=@GNU/make
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
|
PKG_HASH:=dd16fb1d67bfab79a72f5e8390735c49e3e8e70b4945a15ab1f81ddb78658fb3
|
|
|
|
PKG_MAINTAINER:=Heinrich Schuchardt <xypron.glpk@gmx.de>
|
|
PKG_LICENSE:=GPL-3.0-or-later
|
|
PKG_CPE_ID:=cpe:/a:gnu:make
|
|
|
|
PKG_INSTALL:=1
|
|
PKG_BUILD_PARALLEL:=1
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
define Package/make
|
|
SECTION:=devel
|
|
CATEGORY:=Development
|
|
TITLE:=make
|
|
URL:=https://www.gnu.org/software/make/
|
|
endef
|
|
|
|
define Package/make/description
|
|
The Make package contains a tool to create executables from source files.
|
|
endef
|
|
|
|
define Package/make/install
|
|
$(INSTALL_DIR) $(1)/usr/bin
|
|
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/make $(1)/usr/bin/
|
|
endef
|
|
|
|
CONFIGURE_VARS += ac_cv_lib_elf_elf_begin=no
|
|
|
|
# provide gnumake.h at build time for other packages
|
|
define Build/InstallDev
|
|
$(INSTALL_DIR) $(1)/usr/include
|
|
$(INSTALL_DATA) $(PKG_INSTALL_DIR)/usr/include/gnumake.h $(1)/usr/include/
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,make))
|