mirror of
https://github.com/termux/termux-packages.git
synced 2024-11-27 05:08:56 +00:00
0652a4d037
Revbump some python packages after python 3.12 (#18078).
24 lines
1.0 KiB
Bash
24 lines
1.0 KiB
Bash
TERMUX_PKG_HOMEPAGE=https://docs.xfce.org/apps/xfce4-panel-profiles/start
|
|
TERMUX_PKG_DESCRIPTION="A simple application to manage Xfce panel layouts."
|
|
TERMUX_PKG_LICENSE="GPL-3.0"
|
|
TERMUX_PKG_MAINTAINER="@termux"
|
|
_MAJOR_VERSION=1.0
|
|
TERMUX_PKG_VERSION=${_MAJOR_VERSION}.14
|
|
TERMUX_PKG_REVISION=1
|
|
TERMUX_PKG_SRCURL=https://archive.xfce.org/src/apps/xfce4-panel-profiles/${_MAJOR_VERSION}/xfce4-panel-profiles-$TERMUX_PKG_VERSION.tar.bz2
|
|
TERMUX_PKG_SHA256=6d08354e8c44d4b0370150809c1ed601d09c8b488b68986477260609a78be3f9
|
|
TERMUX_PKG_DEPENDS="gtk3, libxfce4ui, libxfce4util, pygobject, python, xfce4-panel"
|
|
TERMUX_PKG_PLATFORM_INDEPENDENT=true
|
|
TERMUX_PKG_BUILD_IN_SRC=true
|
|
|
|
termux_step_configure() {
|
|
sed -e s,@prefix@,$TERMUX_PREFIX, Makefile.in.in > Makefile.in
|
|
sed \
|
|
-e s,@appname@,xfce4-panel-profiles,g \
|
|
-e s,@version@,$TERMUX_PKG_VERSION,g \
|
|
-e s,@mandir@,$TERMUX_PREFIX/share/man,g \
|
|
-e s,@docdir@,$TERMUX_PREFIX/share/doc/xfce4-panel-profiles,g \
|
|
-e s,@python@,$TERMUX_PREFIX/bin/python,g \
|
|
Makefile.in > Makefile
|
|
}
|