mirror of https://github.com/CIRCL/Circlean
Fix incrementation, handling of exe files, doc ++
parent
feb05cc5ab
commit
fa973f4c7e
|
@ -86,7 +86,7 @@ application(){
|
||||||
;;
|
;;
|
||||||
x-dosexec)
|
x-dosexec)
|
||||||
echo "Win executable"
|
echo "Win executable"
|
||||||
copy ${src_file} ${dst_file}_DANGEROUS
|
copy ${src_file} DANGEROUS_${dst_file}_DANGEROUS
|
||||||
;;
|
;;
|
||||||
x-gzip|x-tar|x-7z-compressed)
|
x-gzip|x-tar|x-7z-compressed)
|
||||||
echo "Compressed file"
|
echo "Compressed file"
|
||||||
|
|
|
@ -122,7 +122,7 @@ do
|
||||||
#unpackZip ${SRC} $targetDir $TEMP
|
#unpackZip ${SRC} $targetDir $TEMP
|
||||||
ls -lR "${target_dir}"
|
ls -lR "${target_dir}"
|
||||||
fi
|
fi
|
||||||
let PARTCOUNT=${PARTCOUNT}+1
|
let PARTCOUNT=`expr $PARTCOUNT + 1`
|
||||||
done
|
done
|
||||||
|
|
||||||
# The cleanup is automatically done in the function clean called when
|
# The cleanup is automatically done in the function clean called when
|
||||||
|
|
|
@ -8,7 +8,9 @@ apt-get update
|
||||||
apt-get dist-upgrade
|
apt-get dist-upgrade
|
||||||
apt-get autoremove
|
apt-get autoremove
|
||||||
# System stuff to build
|
# System stuff to build
|
||||||
apt-get install git devscripts cmake debhelper
|
apt-get install git devscripts cmake debhelper vim
|
||||||
|
# Needed dependencies for building libpoppler
|
||||||
|
# TODO
|
||||||
# Deps of pdf2htmlEX
|
# Deps of pdf2htmlEX
|
||||||
echo "deb http://ftp.de.debian.org/debian experimental" >> /etc/apt/sources.list
|
echo "deb http://ftp.de.debian.org/debian experimental" >> /etc/apt/sources.list
|
||||||
apt-get update
|
apt-get update
|
||||||
|
|
Loading…
Reference in New Issue