71594b6ea5
* build-package.sh: allow for arrays in TERMUX_PKG_{SRCURL,SHA256} Packages that require several source archives can then set these parameters to arrays instead of downloading them "manually" in termux_step_post_extract. Downloaded files are extracted into subfolders in TERMUX_PKG_SRCDIR. Tested for backward compatibility in a couple of packages and the combinations tar + tar, zip + tar, tar + zip, zip + zip. * perl: download perl-cross through TERMUX_PKG_SRCURL * perl: remove $PREFIX/{lib/libperl.so,include/perl} before build Otherwise building perl twice doesn't give the same results, symlinks are messed up. Also remove old remnant from when there was a Kid.pm.patch. * bash: fix tiny typo * ecj: remove hardcoded SHA256 and pkg version * elfutils: download argp-standalone through TERMUX_PKG_SRCURL * ldc: download all src archives through TERMUX_PKG_SRCURL * libgc: download libatomic_ops through TERMUX_PKG_SRCURL * libllvm: download all src archives through TERMUX_PKG_SRCURL * linux-man-pages: download src archives through TERMUX_PKG_SRCURL * ncurses: download all src archives through TERMUX_PKG_SRCURL * pngquant: download lib sources through TERMUX_PKG_SRCURL Use .zip for lib since the downloaded archives are otherwise both named $TERMUX_PKG_VERSION.tar.gz and replace each other. This causes caching to not work.
42 lines
1.6 KiB
Bash
42 lines
1.6 KiB
Bash
TERMUX_PKG_HOMEPAGE=https://sourceware.org/elfutils/
|
|
TERMUX_PKG_DESCRIPTION="ELF object file access library"
|
|
TERMUX_PKG_VERSION=(0.170
|
|
1.3)
|
|
TERMUX_PKG_SHA256=(1f844775576b79bdc9f9c717a50058d08620323c1e935458223a12f249c9e066
|
|
dec79694da1319acd2238ce95df57f3680fea2482096e483323fddf3d818d8be)
|
|
TERMUX_PKG_SRCURL=(ftp://sourceware.org/pub/elfutils/${TERMUX_PKG_VERSION}/elfutils-${TERMUX_PKG_VERSION}.tar.bz2
|
|
http://www.lysator.liu.se/~nisse/archive/argp-standalone-${TERMUX_PKG_VERSION[1]}.tar.gz)
|
|
# libandroid-support for langinfo.
|
|
TERMUX_PKG_DEPENDS="libandroid-support, liblzma, libbz2"
|
|
TERMUX_PKG_CLANG=no
|
|
# Use "eu-" as program prefix to avoid conflict with binutils programs.
|
|
# This is what several linux distributions do.
|
|
TERMUX_PKG_EXTRA_CONFIGURE_ARGS="--program-prefix='eu-'
|
|
--disable-symbol-versioning"
|
|
# The ar.c file is patched away for now:
|
|
TERMUX_PKG_RM_AFTER_INSTALL="bin/eu-ar"
|
|
|
|
termux_step_pre_configure() {
|
|
CFLAGS+=" -Wno-error=unused-value -Wno-error=format-nonliteral -Wno-error"
|
|
|
|
# Exposes ACCESSPERMS in <sys/stat.h> which elfutils uses:
|
|
CFLAGS+=" -D__USE_BSD"
|
|
|
|
CFLAGS+=" -DFNM_EXTMATCH=0"
|
|
|
|
cd argp-standalone-${TERMUX_PKG_VERSION[1]}
|
|
ORIG_CFLAGS="$CFLAGS"
|
|
CFLAGS+=" -std=gnu89"
|
|
./configure --host=$TERMUX_HOST_PLATFORM
|
|
make
|
|
CFLAGS="$ORIG_CFLAGS"
|
|
|
|
cp $TERMUX_PKG_BUILDER_DIR/error.h .
|
|
cp $TERMUX_PKG_BUILDER_DIR/stdio_ext.h .
|
|
cp $TERMUX_PKG_BUILDER_DIR/obstack.h .
|
|
cp $TERMUX_PKG_BUILDER_DIR/qsort_r.h .
|
|
|
|
LDFLAGS+=" -L$TERMUX_PKG_SRCDIR/argp-standalone-${TERMUX_PKG_VERSION[1]}"
|
|
CPPFLAGS+=" -isystem $TERMUX_PKG_SRCDIR/argp-standalone-${TERMUX_PKG_VERSION[1]}"
|
|
}
|