summaryrefslogtreecommitdiff
path: root/repo/elfutils/elfutils.xibuild
diff options
context:
space:
mode:
authordavidovski <david@davidovski.xyz>2022-05-31 11:05:19 +0100
committerdavidovski <david@davidovski.xyz>2022-05-31 11:05:19 +0100
commit48ca75555522716f0f686dcae3dd6cf3d8ad714d (patch)
tree00c0f58550ba4661e87376f2f02c8001c69bae44 /repo/elfutils/elfutils.xibuild
parent871b2b573f01c1b3176a0f65458b3d281b41c437 (diff)
removed idea of repos
Diffstat (limited to 'repo/elfutils/elfutils.xibuild')
-rw-r--r--repo/elfutils/elfutils.xibuild54
1 files changed, 54 insertions, 0 deletions
diff --git a/repo/elfutils/elfutils.xibuild b/repo/elfutils/elfutils.xibuild
new file mode 100644
index 0000000..5f7eb38
--- /dev/null
+++ b/repo/elfutils/elfutils.xibuild
@@ -0,0 +1,54 @@
+#!/bin/sh
+
+MAKEDEPS="bison flex zlib bzip2 xz argp-standalone libtool musl-obstack"
+DEPS="musl zlib"
+
+PKG_VER=0.186
+SOURCE=https://sourceware.org/elfutils/ftp/$PKG_VER/elfutils-$PKG_VER.tar.bz2
+ADDITIONAL="
+ error.h
+ fix-aarch64_fregs.patch
+ fix-uninitialized.patch
+ musl-macros.patch
+ musl-strndupa.patch
+ musl-asm-ptrace-h.patch
+"
+
+DESC="Utilities and DSOs to handle ELF files and DWARF data"
+
+prepare () {
+ apply_patches
+
+ cp error.h lib
+ cp error.h src
+
+ cat > lib/libintl.h <<-EOF
+ #ifndef LIBINTL_H
+ #define LIBINTL_H
+ #define _(x) (x)
+ #endif
+ EOF
+
+}
+
+build () {
+ CFLAGS="$CFLAGS -Wno-error -Wno-null-dereference" \
+ ./configure \
+ --prefix=/usr \
+ --sysconfdir=/etc \
+ --mandir=/usr/share/man \
+ --localstatedir=/var \
+ --disable-werror \
+ --program-prefix=eu- \
+ --enable-deterministic-archives \
+ --disable-nls \
+ --disable-libdebuginfod \
+ --disable-debuginfod
+ make
+}
+
+package() {
+ make DESTDIR=$PKG_DEST install
+ rm -r "$PKG_DEST"/usr/lib/libelf.so.*
+ rm -r "$PKG_DEST"/usr/include/libelf.h
+}