hcxtools: update to 6.3.2
[feed/packages.git] / devel / m4 / Makefile
1 #
2 # Copyright (C) 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
8 include $(TOPDIR)/rules.mk
9
10 PKG_NAME:=m4
11 PKG_VERSION:=1.4.19
12 PKG_RELEASE:=1
13
14 PKG_SOURCE_URL:=@GNU/m4
15 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz
16 PKG_HASH:=63aede5c6d33b6d9b13511cd0be2cac046f2e70fd0a07aa9573a04a82783af96
17 PKG_MAINTAINER:=Heinrich Schuchardt <xypron.glpk@gmx.de>
18 PKG_LICENSE:=GPL-3.0-or-later
19 PKG_CPE_ID:=cpe:/a:gnu:m4
20
21 PKG_INSTALL:=1
22
23 include $(INCLUDE_DIR)/package.mk
24
25 define Package/m4
26 SECTION:=devel
27 CATEGORY:=Development
28 TITLE:=m4
29 URL:=https://www.gnu.org/software/m4/
30 endef
31
32 define Package/m4/description
33 GNU M4 is an implementation of the traditional Unix macro processor.
34 It is used by GNU Autoconf and Automake.
35 endef
36
37 define Package/m4/install
38 $(INSTALL_DIR) $(1)/usr/bin
39 $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/m4 $(1)/usr/bin/
40 endef
41
42 $(eval $(call BuildPackage,m4))