pptpd: moved to github
[packages.git] / devel / make / Makefile
1 #
2 # Copyright (C) 2007-2010 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
9 PKG_NAME:=make
10 PKG_VERSION:=3.81
11 PKG_RELEASE:=1
12 PKG_SOURCE_URL:=@GNU/make
13 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
14 PKG_MD5SUM:=354853e0b2da90c527e35aabb8d6f1e6
15 PKG_INSTALL:=1
16 PKG_BUILD_PARALLEL:=1
17
18 include $(INCLUDE_DIR)/package.mk
19
20 define Package/make
21   SECTION:=devel
22   CATEGORY:=Development
23   DEPENDS:=+libelf1
24   TITLE:=make
25   URL:=http://www.gnu.org/software/make/
26 endef
27
28 define Package/make/description
29         The Make package contains a program for compiling packages
30 endef
31
32 define Package/make/install
33         $(INSTALL_DIR) $(1)/usr/bin
34         $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/make $(1)/usr/bin/
35 endef
36
37 $(eval $(call BuildPackage,make))