mirror of
https://github.com/termux/termux-packages.git
synced 2025-11-01 00:59:02 +00:00
29 lines
1.2 KiB
Bash
29 lines
1.2 KiB
Bash
TERMUX_PKG_HOMEPAGE=https://ice-wm.org/
|
|
TERMUX_PKG_DESCRIPTION="Window manager with goals of speed, simplicity, and usability"
|
|
TERMUX_PKG_LICENSE="LGPL-2.0-only"
|
|
TERMUX_PKG_MAINTAINER="@termux"
|
|
TERMUX_PKG_VERSION="3.9.0"
|
|
TERMUX_PKG_SRCURL="https://github.com/ice-wm/icewm/releases/download/$TERMUX_PKG_VERSION/icewm-$TERMUX_PKG_VERSION.tar.lz"
|
|
TERMUX_PKG_SHA256=1323527a9a49db66e9ce7b08e6ec43c87700243432fc6679681df367c67b2dc0
|
|
TERMUX_PKG_AUTO_UPDATE=true
|
|
TERMUX_PKG_DEPENDS="alsa-lib, imlib2, libandroid-glob, libandroid-wordexp, libice, librsvg, libsm, libsndfile, libxcomposite, libxcursor, libxdamage, libxinerama, libxrandr, libxres"
|
|
TERMUX_PKG_BUILD_DEPENDS="aosp-libs"
|
|
TERMUX_PKG_SUGGESTS="xdg-menu"
|
|
|
|
termux_step_pre_configure() {
|
|
if [[ "$TERMUX_ON_DEVICE_BUILD" == "false" ]]; then
|
|
termux_setup_proot
|
|
patch="$TERMUX_PKG_BUILDER_DIR/genpref.diff"
|
|
echo "Applying patch: $(basename "$patch")"
|
|
patch --silent -p1 < "$patch"
|
|
fi
|
|
|
|
LDFLAGS+=" -landroid-glob -landroid-wordexp"
|
|
|
|
# Every instance of '/usr' in the code is replaceable with '$TERMUX_PREFIX'.
|
|
find "$TERMUX_PKG_SRCDIR" -type f | \
|
|
xargs -n 1 sed -i \
|
|
-e "s|/usr|$TERMUX_PREFIX|g" \
|
|
-e "s|/etc|$TERMUX_PREFIX/etc|g"
|
|
}
|