aboutsummaryrefslogtreecommitdiffstats
path: root/chapter8/expat.sh
blob: 67fee6b6fe75cf150d686c4f8f1ce82c1c1cb8a3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/bash
set -e

./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}"