19 lines
359 B
Plaintext
19 lines
359 B
Plaintext
|
#!/bin/sh -e
|
||
|
|
||
|
./configure \
|
||
|
--prefix=/usr \
|
||
|
--sysconfdir=/etc \
|
||
|
--mandir=/usr/share/man \
|
||
|
--disable-shared \
|
||
|
--disable-nls \
|
||
|
--without-modules \
|
||
|
--without-magick-plus-plus \
|
||
|
--without-perl \
|
||
|
--without-xml
|
||
|
|
||
|
make
|
||
|
make DESTDIR="$1" install-binPROGRAMS install-exec-local
|
||
|
|
||
|
# Remove the rarely used library.
|
||
|
rm -rf "$1/usr/lib"
|