From 6f1fc760263e3d02de2a4d3ec9a226bda1cf2383 Mon Sep 17 00:00:00 2001 From: Leonid Pliushch Date: Sun, 8 Nov 2020 22:46:23 +0200 Subject: [PATCH] libsearpc: build for python3.9 --- packages/libsearpc/build.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/packages/libsearpc/build.sh b/packages/libsearpc/build.sh index 1270a1b77e..24c3b713aa 100644 --- a/packages/libsearpc/build.sh +++ b/packages/libsearpc/build.sh @@ -2,12 +2,14 @@ TERMUX_PKG_HOMEPAGE=https://github.com/haiwen/libsearpc TERMUX_PKG_DESCRIPTION="A simple C language RPC framework (mainly for seafile)" TERMUX_PKG_LICENSE="Apache-2.0" TERMUX_PKG_VERSION=1:3.2.0 +TERMUX_PKG_REVISION=1 TERMUX_PKG_SRCURL=https://github.com/haiwen/libsearpc/archive/v${TERMUX_PKG_VERSION:2}.tar.gz TERMUX_PKG_SHA256=cd00197fcc40b45b1d5e892b2d08dfa5947f737e0d80f3ef26419334e75b0bff -TERMUX_PKG_DEPENDS="glib, libjansson" +TERMUX_PKG_DEPENDS="glib, libjansson, python" TERMUX_PKG_BREAKS="libsearpc-dev" TERMUX_PKG_REPLACES="libsearpc-dev" termux_step_post_get_source() { ./autogen.sh + export PYTHON="python3.9" }