mirror of
https://github.com/termux/termux-packages.git
synced 2025-08-05 03:40:35 +00:00
38 lines
1.3 KiB
Bash
38 lines
1.3 KiB
Bash
TERMUX_PKG_HOMEPAGE=https://www.fltk.org/
|
|
TERMUX_PKG_DESCRIPTION="Graphical user interface toolkit for X"
|
|
TERMUX_PKG_LICENSE="LGPL-2.0"
|
|
TERMUX_PKG_LICENSE_FILE="COPYING"
|
|
TERMUX_PKG_MAINTAINER="@termux"
|
|
# Revbump reverse dependencies after updating
|
|
TERMUX_PKG_VERSION="1.3.9"
|
|
TERMUX_PKG_SRCURL=https://www.fltk.org/pub/fltk/${TERMUX_PKG_VERSION}/fltk-${TERMUX_PKG_VERSION}-source.tar.gz
|
|
TERMUX_PKG_SHA256=d736b0445c50d607432c03d5ba5e82f3fba2660b10bc1618db8e077a42d9511b
|
|
TERMUX_PKG_AUTO_UPDATE=false
|
|
TERMUX_PKG_DEPENDS="fontconfig, glu, libc++, libjpeg-turbo, libpng, libx11, libxcursor, libxext, libxfixes, libxft, libxinerama, libxrender, opengl, zlib"
|
|
TERMUX_PKG_BUILD_IN_SRC=true
|
|
|
|
TERMUX_PKG_EXTRA_CONFIGURE_ARGS="
|
|
--enable-shared
|
|
--enable-threads
|
|
--enable-xinerama
|
|
--enable-xft
|
|
--enable-xfixes
|
|
--enable-xcursor
|
|
--enable-xrender
|
|
"
|
|
|
|
termux_step_pre_configure() {
|
|
sed -i 's/class Fl_XFont_On_Demand/class FL_EXPORT Fl_XFont_On_Demand/' FL/x.H
|
|
sed -i 's/x-fluid.desktop/fluid.desktop/' -i fluid/Makefile
|
|
sed -i -e 's/$(LINKFLTK)/$(LINKSHARED)/' -e 's/$(LINKFLTKIMG)/$(LINKSHARED)/' test/Makefile
|
|
|
|
export LIBS="$LDFLAGS"
|
|
}
|
|
|
|
termux_step_post_massage() {
|
|
local _GUARD_FILE="lib/libfltk.so.1.3"
|
|
if [ ! -e "${_GUARD_FILE}" ]; then
|
|
termux_error_exit "Error: file ${_GUARD_FILE} not found."
|
|
fi
|
|
}
|