blob: e5836de37718d4d2fb9715d5a839194071e35b24 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#!/bin/sh -e
./configure \
--prefix=/usr \
--sysconfdir=/etc \
--mandir=/usr/share/man \
--disable-nls \
--without-magick-plus-plus \
--without-perl \
--without-xml
make
make DESTDIR="$1" install
|