From 9a5b4e1a0e7b1192bd42496cd901b671e77c61cd Mon Sep 17 00:00:00 2001 Message-Id: <9a5b4e1a0e7b1192bd42496cd901b671e77c61cd.1747307974.git.mdw@distorted.org.uk> From: Mark Wooding Date: Sun, 3 Jan 2016 05:44:45 -0500 Subject: [PATCH] toilet: Switch to mirror for downloading source Organization: Straylight/Edgeware From: Fredrik Fornwall --- packages/toilet/build.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/packages/toilet/build.sh b/packages/toilet/build.sh index fc45da6b..e9583ce4 100644 --- a/packages/toilet/build.sh +++ b/packages/toilet/build.sh @@ -1,6 +1,8 @@ TERMUX_PKG_HOMEPAGE=http://caca.zoy.org/wiki/toilet TERMUX_PKG_DESCRIPTION="FIGlet-compatible display of large colourful characters in text mode" TERMUX_PKG_VERSION=0.3 -TERMUX_PKG_SRCURL=http://caca.zoy.org/raw-attachment/wiki/toilet/toilet-${TERMUX_PKG_VERSION}.tar.gz +# Switched to mirror since original source is down sometimes: +# TERMUX_PKG_SRCURL=http://caca.zoy.org/raw-attachment/wiki/toilet/toilet-${TERMUX_PKG_VERSION}.tar.gz +TERMUX_PKG_SRCURL=http://fossies.org/linux/privat/toilet-${TERMUX_PKG_VERSION}.tar.gz TERMUX_PKG_DEPENDS="libcaca" TERMUX_PKG_BUILD_IN_SRC=yes -- [mdw]