From ec9660119e66c2853931770c6d285fcd2d661481 Mon Sep 17 00:00:00 2001 From: Leonid Pliushch Date: Tue, 2 Oct 2018 12:24:41 +0300 Subject: [PATCH] fakeroot: fix missing libfakeroot.so --- packages/fakeroot/build.sh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/packages/fakeroot/build.sh b/packages/fakeroot/build.sh index 94edcd76c..8714da5b4 100644 --- a/packages/fakeroot/build.sh +++ b/packages/fakeroot/build.sh @@ -3,6 +3,11 @@ TERMUX_PKG_MAINTAINER="Leonid Plyushch @xeffyr" TERMUX_PKG_HOMEPAGE=http://packages.debian.org/fakeroot TERMUX_PKG_DESCRIPTION="Tool for simulating superuser privileges (with tcp ipc)" TERMUX_PKG_VERSION=1.23 +TERMUX_PKG_REVISION=1 TERMUX_PKG_SRCURL=http://ftp.debian.org/debian/pool/main/f/fakeroot/fakeroot_${TERMUX_PKG_VERSION}.orig.tar.xz TERMUX_PKG_SHA256=009cd6696a931562cf1c212bb57ca441a4a2d45cd32c3190a35c7ae98506f4f6 TERMUX_PKG_EXTRA_CONFIGURE_ARGS="--with-ipc=tcp" + +termux_step_post_make_install() { + ln -sfr "${TERMUX_PREFIX}/lib/libfakeroot-0.so" "${TERMUX_PREFIX}/lib/libfakeroot.so" +}