1
0
This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
Files
config
docs
include
package
scripts
target
toolchain
tools
autoconf
automake
b43-tools
bc
bison
ccache
cloog
cmake
dosfstools
e2fsprogs
elftosb
expat
findutils
firmware-utils
flex
flock
gengetopt
gmp
include
isl
libelf
libtool
lzma
lzma-old
m4
make-ext4fs
missing-macros
mkimage
mklibs
mm-macros
mpc
mpfr
mtd-utils
mtools
padjffs2
patch
patch-image
patchelf
patches
Makefile
pkg-config
ppl
qemu
quilt
scons
sdimage
sed
sparse
squashfs
squashfs4
sstrip
tar
upslug2
upx
wrt350nv2-builder
xz
yaffs2
Makefile
.gitattributes
.gitignore
BSDmakefile
Config.in
LICENSE
Makefile
README
feeds.conf.default
rules.mk
svn-openwrt-archive/tools/patchelf/Makefile
Jo-Philipp Wich 572b943080 tools: add patchelf host build
Signed-off-by: Jo-Philipp Wich <jow@openwrt.org>

SVN-Revision: 44376
2015-02-10 15:48:32 +00:00

27 lines
643 B
Makefile

#
# Copyright (C) 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:=patchelf
PKG_VERSION:=0.8
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
PKG_SOURCE_URL:=http://nixos.org/releases/patchelf/patchelf-$(PKG_VERSION)
PKG_MD5SUM:=5b151e3c83b31f5931b4a9fc01635bfd
HOST_BUILD_PARALLEL:=1
HOST_FIXUP:=autoreconf
include $(INCLUDE_DIR)/host-build.mk
define Host/Install
$(INSTALL_DIR) $(STAGING_DIR_HOST)/bin
$(INSTALL_BIN) $(HOST_BUILD_DIR)/src/patchelf $(STAGING_DIR_HOST)/bin/patchelf
endef
$(eval $(call HostBuild))