Small change to innosetup script so that install can be performed by non-privileged user

This commit is contained in:
Jean-Francois Dockes 2016-03-17 19:26:52 +01:00
commit 59747d0291
1294 changed files with 445671 additions and 0 deletions

17
website/copydocs Executable file
View file

@ -0,0 +1,17 @@
#!/bin/sh
set -x
docdir=/home/dockes/projets/fulltext/recoll/src/doc/user/
#(cd $docdir;make) || exit 1
test -d usermanual || mkdir usermanual || exit 1
cd usermanual
thisdir=`pwd`
(cd $docdir; find . -name templates -prune -o -print | cpio -vudp $thisdir)
mv usermanual.pdf recoll_user_manual.pdf
# The freebsd tool chain generates a link to book.html in the index. Too
# lazy to check if this can be changed
cp -p usermanual.html book.html
#cp usermanual.html index.html