diff options
author | davidovski <david@davidovski.xyz> | 2022-05-31 11:05:19 +0100 |
---|---|---|
committer | davidovski <david@davidovski.xyz> | 2022-05-31 11:05:19 +0100 |
commit | 48ca75555522716f0f686dcae3dd6cf3d8ad714d (patch) | |
tree | 00c0f58550ba4661e87376f2f02c8001c69bae44 /repo/system/libelf/libelf.xibuild | |
parent | 871b2b573f01c1b3176a0f65458b3d281b41c437 (diff) |
removed idea of repos
Diffstat (limited to 'repo/system/libelf/libelf.xibuild')
-rw-r--r-- | repo/system/libelf/libelf.xibuild | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/repo/system/libelf/libelf.xibuild b/repo/system/libelf/libelf.xibuild deleted file mode 100644 index 5ec93b0..0000000 --- a/repo/system/libelf/libelf.xibuild +++ /dev/null @@ -1,32 +0,0 @@ -#!/bin/sh - -MAKEDEPS="make " -DEPS="musl-fts musl-obstack argp-standalone" - -SOURCE=https://sourceware.org/elfutils/ftp/elfutils-latest.tar.bz2 -DESC="Handle ELF object files and DWARF debugging information" - -ADDITIONAL=" - https://raw.githubusercontent.com/dslm4515/Musl-LFS/master/files/elfutils-void/error.h -" - -prepare() { - cp error.h lib/ - cp error.h src/ - - autoreconf -if - -} - -build () { - CFLAGS="-DFNM_EXTMATCH=0 -Wno-error -Wno-error=null-dereference -Wl,-z,stack-size=2097152" \ - ./configure --prefix=/usr --disable-debuginfod \ - --enable-libdebuginfod=dummy - make -C lib && make -C libelf -} - -package () { - make -C libelf DESTDIR=$PKG_DEST install - - install -d -m644 config/libelf.pc $PKG_DEST/usr/lib/pkgconfig -} |