Bump GNU patch from 2.7.4 to 2.7.5. Changelog: http://git.savannah.gnu.org/cgit/patch.git/tree/NEWS Changes in version 2.7.5: * There are users which expect patch to follow symbolic links in the working directory, so patch now again follows symbolic links as long as they do not leave the working directory. Signed-off-by: Hannu Nyman <hannu.nyman@iki.fi>
48 lines
1.1 KiB
Makefile
48 lines
1.1 KiB
Makefile
#
|
|
# Copyright (C) 2008-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:=patch
|
|
PKG_VERSION:=2.7.5
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz
|
|
PKG_SOURCE_URL:=@GNU/patch
|
|
PKG_MD5SUM:=e3da7940431633fb65a01b91d3b7a27a
|
|
PKG_LICENSE:=GPL-3.0+
|
|
PKG_LICENSE_FILES:=COPYING
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
define Package/patch
|
|
SECTION:=devel
|
|
CATEGORY:=Development
|
|
TITLE:=patch
|
|
URL:=http://www.gnu.org/
|
|
MAINTAINER:=Russell Senior <russell@personaltelco.net>
|
|
endef
|
|
|
|
define Package/patch/description
|
|
The Patch package contains a program for modifying or creating files
|
|
by applying a "patch" file typically created by the diff program.
|
|
endef
|
|
|
|
CONFIGURE_ARGS+= --disable-xattr
|
|
|
|
define Build/Compile
|
|
$(MAKE) -C $(PKG_BUILD_DIR) \
|
|
DESTDIR="$(PKG_INSTALL_DIR)" \
|
|
all install
|
|
endef
|
|
|
|
define Package/patch/install
|
|
$(INSTALL_DIR) $(1)/usr/bin
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/bin/patch $(1)/usr/bin/
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,patch))
|