Skip to content

Commit

Permalink
Added custom script to build libopera-perl documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
cosimo committed Jul 1, 2010
1 parent ab2184d commit 7329731
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions build.sh
@@ -0,0 +1,17 @@
#!/bin/sh

TARGET_DIR=./build
OPTS="--output-path $TARGET_DIR --perl /usr/bin/perl"

mkdir -p $TARGET_DIR || exit 1

# Special case for static folder, rsync to the build dir
perl ./build-perldoc-static.pl $OPTS --template opera.tt
rsync -av static-html/build/* $TARGET_DIR
rm -rf static-html/build

perl ./build-perldoc-dist.pl $OPTS
perl ./build-perldoc-js.pl $OPTS
#perl ./build-perldoc-pdf.pl $OPTS
perl ./build-perldoc-html.pl $OPTS --template opera.tt

0 comments on commit 7329731

Please sign in to comment.