summaryrefslogtreecommitdiff
path: root/package/elfutils
diff options
context:
space:
mode:
authorPhil Sutter <phil.sutter@viprinet.com>2015-02-24 12:46:57 +0100
committerWaldemar Brodkorb <wbx@openadk.org>2015-02-28 10:14:27 +0100
commit2c333655f154cfd1bc5e983d3c56a10c1a105771 (patch)
tree0e859a17c8f9f19d9cd57e219733b5fde5dc9ed5 /package/elfutils
parent7d94131e28e98d79f04d7b4fb6b392dac56789ff (diff)
port elfutils package
This is a drop-in replacement for libelf, containing the binutils binaries. TODO: move toolchain over to elfutils, split this package up into library and binaries.
Diffstat (limited to 'package/elfutils')
-rw-r--r--package/elfutils/Makefile33
1 files changed, 33 insertions, 0 deletions
diff --git a/package/elfutils/Makefile b/package/elfutils/Makefile
new file mode 100644
index 000000000..9e864b808
--- /dev/null
+++ b/package/elfutils/Makefile
@@ -0,0 +1,33 @@
+# This file is part of the OpenADK project. OpenADK is copyrighted
+# material, please see the LICENCE file in the top-level directory.
+
+include $(ADK_TOPDIR)/rules.mk
+
+PKG_NAME:= elfutils
+PKG_VERSION:= 0.161
+PKG_RELEASE:= 1
+PKG_HASH:= 570c91a1783fa5386aaa2dfdd08dda1de777c2b63bf3b9c1437d635ffdd7a070
+PKG_DESCR:= Libraries/utilities to handle ELF objects (drop in replacement for libelf)
+PKG_SECTION:= base/libs
+PKG_URL:= https://fedorahosted.org/elfutils/
+PKG_SITES:= https://fedorahosted.org/releases/e/l/elfutils/${PKG_VERSION}/
+DISTFILES:= ${PKG_NAME}-${PKG_VERSION}.tar.bz2
+
+include $(ADK_TOPDIR)/mk/package.mk
+
+$(eval $(call PKG_template,ELFUTILS,$(PKG_NAME),$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
+
+# not only because we pass -DNDEBUG, this package won't build with -Werror
+TARGET_CFLAGS+= -Wno-error
+
+post-install:
+ $(INSTALL_DIR) $(IDIR_ELFUTILS)/usr/lib/elfutils
+ ${CP} ${WRKINST}/usr/lib/lib{asm,dw,elf}*.so* \
+ ${IDIR_ELFUTILS}/usr/lib
+ ${CP} ${WRKINST}/usr/lib/elfutils/libebl*.so \
+ ${IDIR_ELFUTILS}/usr/lib/elfutils
+ ${INSTALL_DIR} ${IDIR_ELFUTILS}/usr/bin
+ ${INSTALL_BIN} ${WRKINST}/usr/bin/* \
+ ${IDIR_ELFUTILS}/usr/bin
+
+include ${ADK_TOPDIR}/mk/pkg-bottom.mk