- define Build/Install
- @if [ -L $(STAGING_DIR)/bin/sed ] ; then \
- rm -f $(STAGING_DIR)/bin/sed; fi;
- @if [ ! -f $(STAGING_DIR)/bin/sed -o $(STAGING_DIR)/bin/sed -ot $(PKG_BUILD_DIR)/sed/sed ]; then \
- set -x; \
- mkdir -p $(STAGING_DIR)/bin; \
- $(MAKE) DESTDIR=$(STAGING_DIR) -C $(PKG_BUILD_DIR) install; \
- mv $(STAGING_DIR)/usr/bin/sed $(STAGING_DIR)/bin/; \
- rm -rf $(STAGING_DIR)/share/locale $(STAGING_DIR)/usr/info \
- $(STAGING_DIR)/usr/man $(STAGING_DIR)/usr/share/doc; \
- fi
- endef
-else
- define Build/Compile
- endef
- define Build/Install
- rm -rf $(STAGING_DIR)/bin/sed
- mkdir -p $(STAGING_DIR)/bin
- ln -s `which sed` $(STAGING_DIR)/bin/sed
- endef
-endif