mirror of
https://github.com/termux/termux-packages.git
synced 2024-12-11 23:00:52 +00:00
39 lines
1.3 KiB
Bash
39 lines
1.3 KiB
Bash
TERMUX_PKG_HOMEPAGE=https://github.com/trentbuck/binutils-is-llvm
|
|
TERMUX_PKG_DESCRIPTION="Use llvm as binutils"
|
|
TERMUX_PKG_LICENSE="MIT"
|
|
TERMUX_PKG_MAINTAINER="@termux"
|
|
# The version number is different from the original one.
|
|
TERMUX_PKG_VERSION=0.3
|
|
TERMUX_PKG_REVISION=3
|
|
TERMUX_PKG_AUTO_UPDATE=false
|
|
TERMUX_PKG_SKIP_SRC_EXTRACT=true
|
|
TERMUX_PKG_DEPENDS="lld, llvm"
|
|
TERMUX_PKG_CONFLICTS="binutils"
|
|
|
|
termux_step_make_install() {
|
|
ln -sf lld $TERMUX_PREFIX/bin/ld
|
|
local f
|
|
# Please do not include `as`. `llvm-as` is pretty much different from
|
|
# GNU as. Clang's `-fno-integrated-as` will not work as expected when
|
|
# `as` is a symlink to `llvm-as`. `bin/as` is provided by `binutils-bin`
|
|
# package which does not collide with this package.
|
|
for f in addr2line ar dwp nm objcopy objdump ranlib readelf size strings strip; do
|
|
ln -sf llvm-${f} $TERMUX_PREFIX/bin/${f}
|
|
done
|
|
ln -sf llvm-cxxfilt $TERMUX_PREFIX/bin/c++filt
|
|
|
|
local dir=$TERMUX_PREFIX/share/$TERMUX_PKG_NAME
|
|
mkdir -p $dir
|
|
touch $dir/.placeholder
|
|
|
|
# Add some arch-prefixed symlinks like binutils.
|
|
for b in ar ld nm objdump ranlib readelf strip; do
|
|
ln -sf $b $TERMUX_PREFIX/bin/$TERMUX_HOST_PLATFORM-$b
|
|
done
|
|
}
|
|
|
|
termux_step_install_license() {
|
|
install -Dm600 -t $TERMUX_PREFIX/share/doc/$TERMUX_PKG_NAME \
|
|
$TERMUX_PKG_BUILDER_DIR/LICENSE
|
|
}
|