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