lede-packages-rs

git clone git://archive.git.mtrnord.blog/MTRNord/lede-packages-rs.git
Log | Files | Refs | README | LICENSE

commit 686606eaae408f5e9951d0ced84d33824e4bff44
parent f9bd35d0a13937f037869d3673a6332591974dea
Author: Heinrich Schuchardt <xypron.glpk@gmx.de>
Date:   Sat,  9 Jan 2016 19:39:13 +0100

devel/automake: add automake-$(PKG_VERSION)

To make automake work correctly it is necessary to have files
* automake
* aclocal
* automake-$(PKG_VERSION)
* aclocal-$(PKG_VERSION)

The files without version number can be supplied as symbolic
links.

Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>

Diffstat:
Mdevel/automake/Makefile | 14+++++++++-----
1 file changed, 9 insertions(+), 5 deletions(-)

diff --git a/devel/automake/Makefile b/devel/automake/Makefile @@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=automake PKG_VERSION:=1.15 -PKG_RELEASE:=1 +PKG_RELEASE:=2 PKG_SOURCE_URL:=@GNU/automake PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz @@ -37,11 +37,15 @@ endef define Package/automake/install $(INSTALL_DIR) $(1)/usr/bin $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/automake-$(PKG_VERSION) \ - $(1)/usr/bin/automake + $(1)/usr/bin/automake-$(PKG_VERSION) + $(LN) -r $(1)/usr/bin/automake-$(PKG_VERSION) $(1)/usr/bin/automake $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/aclocal-$(PKG_VERSION) \ - $(1)/usr/bin/aclocal - $(SED) 's|$(STAGING_DIR_HOST)|/usr|g' $(1)/usr/bin/automake - $(SED) 's|$(STAGING_DIR_HOST)|/usr|g' $(1)/usr/bin/aclocal + $(1)/usr/bin/aclocal-$(PKG_VERSION) + $(LN) -r $(1)/usr/bin/aclocal-$(PKG_VERSION) $(1)/usr/bin/aclocal + $(SED) 's|$(STAGING_DIR_HOST)|/usr|g' \ + $(1)/usr/bin/automake-$(PKG_VERSION) + $(SED) 's|$(STAGING_DIR_HOST)|/usr|g' \ + $(1)/usr/bin/aclocal-$(PKG_VERSION) $(INSTALL_DIR) $(1)/usr/share/automake-$(PKG_VERSION) for dir in \