File: build_docs.sh

package info (click to toggle)
xmlsec1 1.3.9-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 19,144 kB
  • sloc: ansic: 101,545; xml: 20,100; sh: 3,804; makefile: 1,215; javascript: 434; perl: 199
file content (18 lines) | stat: -rwxr-xr-x 470 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/bin/sh

# config
configure_options=""
configure_options="$configure_options --enable-static-linking --enable-crypto-dl=no"
configure_options="$configure_options --enable-manpages-build --enable-docs-build"
configure_options="$configure_options --enable-md5 --enable-ripemd160"
cur_pwd=`pwd`
today=`date +%F-%H-%M-%S`

echo "============= Building xmlsec"
make distclean
./autogen.sh $configure_options
make

echo "============== Cleanup"
cd "$cur_pwd"
make distclean