diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2013-09-04 17:20:44 +0200 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2013-09-04 17:20:44 +0200 |
commit | e6d3ec3209d984d8b449cad227e73a3d070e78f8 (patch) | |
tree | e06b67ca04766984e28c35a5fd71d8c1e2a60f28 /package/grep/Makefile | |
parent | 29df7026088c973b5ba99b48f93b10006e5c0e4c (diff) |
fix musl compile
Diffstat (limited to 'package/grep/Makefile')
-rw-r--r-- | package/grep/Makefile | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/package/grep/Makefile b/package/grep/Makefile index fa68dc229..3a834e88c 100644 --- a/package/grep/Makefile +++ b/package/grep/Makefile @@ -4,10 +4,10 @@ include $(TOPDIR)/rules.mk PKG_NAME:= grep -PKG_VERSION:= 2.7 -PKG_RELEASE:= 3 -PKG_MD5SUM:= e848f07e3e79aa7899345d17c7e4115e -PKG_DESCR:= global search for a regular expression and print out matched lines +PKG_VERSION:= 2.14 +PKG_RELEASE:= 1 +PKG_MD5SUM:= d4a3f03849d1e17ce56ab76aa5a24cab +PKG_DESCR:= global search for a regex and print out matched lines PKG_SECTION:= utils PKG_DEPENDS:= libpcre libiconv PKG_BUILDDEP:= pcre @@ -15,12 +15,13 @@ PKG_URL:= http://www.gnu.org/software/grep/ PKG_SITES:= ftp://ftp.gnu.org/gnu/grep/ PKG_NOPARALLEL:= 1 +DISTFILES:= $(PKG_NAME)-$(PKG_VERSION).tar.xz + include $(TOPDIR)/mk/package.mk $(eval $(call PKG_template,GREP,$(PKG_NAME),$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION})) TARGET_LDFLAGS+= -liconv -CONFIGURE_ARGS+= --without-included-regex post-install: $(INSTALL_DIR) $(IDIR_GREP)/bin |