f80d7377cb
git-svn-id: svn://svn.openwrt.org/openwrt/packages@12163 3c298f89-4303-0410-b956-a3cf2f4a3e73
36 lines
798 B
Makefile
36 lines
798 B
Makefile
#
|
|
# Copyright (C) 2007 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:=3.81
|
|
PKG_RELEASE:=1
|
|
PKG_SOURCE_URL:=http://ftp.gnu.org/gnu/make/
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
|
|
PKG_MD5SUM:=354853e0b2da90c527e35aabb8d6f1e6
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
define Package/make
|
|
SECTION:=devel
|
|
CATEGORY:=Development
|
|
TITLE:=make
|
|
endef
|
|
|
|
define Package/make/description
|
|
The Make package contains a program for compiling packages
|
|
endef
|
|
|
|
MAKE_FLAGS += all install DESTDIR="$(PKG_INSTALL_DIR)"
|
|
|
|
define Package/make/install
|
|
$(INSTALL_DIR) $(1)/usr/bin
|
|
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/make $(1)/usr/bin/
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,make))
|