add contents

This commit is contained in:
Trevor Batley
2025-10-09 15:04:29 +11:00
parent 170362eec1
commit bce7dd054a
2537 changed files with 301282 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
#!/bin/bash
. source.sh
mkdir -p $DW_DL_CACHE
cd $DW_DL_CACHE
echo "Going to download $DW_VERSION"
#Avoid downloading the tarball again if we already have it
if [ ! -e $DW_VERSION.tgz ]; then
echo " Starting to download $DW_VERSION.tgz"
wget http://download.dokuwiki.org/src/dokuwiki/$DW_VERSION.tgz
chmod a+r $DW_VERSION.tgz
else
echo " $DW_VERSION.tgz found. No need to download it again."
fi