repo/extra/cairo/build

28 lines
588 B
Plaintext
Raw Normal View History

2019-08-04 17:12:55 -06:00
#!/bin/sh -e
2019-08-18 04:54:00 -06:00
# Disable building 'cairo-sphinx'.
2021-07-03 15:32:12 -06:00
sed -e "s/\(BUILD_SPHINX_TRUE=\)/\1'#'/" \
-e "s/\(BUILD_SPHINX_FALSE=\)'#'/\1=/" \
configure > _
mv -f _ configure
chmod +x configure
2019-08-18 04:54:00 -06:00
2021-07-05 15:36:47 -06:00
# Disable building tests and documentation.
sed 's/test perf//g;s/src doc/src/g' Makefile.in > _
2021-07-03 15:32:12 -06:00
mv -f _ Makefile.in
2019-08-04 17:12:55 -06:00
./configure \
--prefix=/usr \
--disable-static \
--enable-tee \
2021-07-08 01:44:41 -06:00
--disable-xlib-xcb \
--disable-xcb \
--disable-xlib-xrender \
--disable-xlib \
2019-08-18 04:54:00 -06:00
--disable-trace \
--disable-valgrind \
--disable-gtk-doc-html
2019-08-04 17:12:55 -06:00
make
make DESTDIR="$1" install