diff options
Diffstat (limited to 'chapter8/expat.sh')
-rw-r--r-- | chapter8/expat.sh | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/chapter8/expat.sh b/chapter8/expat.sh new file mode 100644 index 0000000..1e21feb --- /dev/null +++ b/chapter8/expat.sh @@ -0,0 +1,11 @@ +#!/bin/bash + +./configure --prefix=/usr \ + --disable-static \ + --docdir=/usr/share/doc/expat-"${VERSION}" + +make + +make -j1 install + +install -v -m644 doc/*.{html,png,css} /usr/share/doc/expat-"${VERSION}" |