0
0
mirror of https://github.com/termux/termux-packages.git synced 2025-08-28 21:33:18 +00:00
Files
termux-packages/x11-packages/synaptic/build.sh
Termux Github Actions 11f2421704 bump(x11/synaptic): 0.91.5
This commit has been automatically submitted by Github Actions.
2025-02-24 08:42:40 +00:00

24 lines
915 B
Bash

TERMUX_PKG_HOMEPAGE=https://www.nongnu.org/synaptic/
TERMUX_PKG_DESCRIPTION="Synaptic is a graphical package management tool based on GTK+ and APT."
TERMUX_PKG_LICENSE="GPL-2.0"
TERMUX_PKG_MAINTAINER="@Yisus7u7"
TERMUX_PKG_VERSION="0.91.5"
TERMUX_PKG_SRCURL=https://github.com/mvo5/synaptic/archive/refs/tags/${TERMUX_PKG_VERSION}.tar.gz
TERMUX_PKG_SHA256=edd000d988d774faa7075221cda423f955182de476c5bce345d329148a4442a0
TERMUX_PKG_AUTO_UPDATE=true
TERMUX_PKG_UPDATE_TAG_TYPE="newest-tag"
TERMUX_PKG_DEPENDS="apt, dpkg, gdk-pixbuf, glib, gtk3, libc++, libvte, pango"
TERMUX_PKG_RECOMMENDS="hicolor-icon-theme, netsurf"
TERMUX_PKG_BUILD_IN_SRC=true
termux_step_pre_configure(){
NOCONFIGURE=1 ./autogen.sh
# Fix "error: no template named binary_function" (binary_function was removed in c++17):
CXXFLAGS+=" -std=c++14"
}
termux_step_post_make_install(){
install -Dm700 -t ${TERMUX_PREFIX}/bin ./gtk/synaptic
}