diff options
Diffstat (limited to 'extra/imagemagick/build')
-rwxr-xr-x | extra/imagemagick/build | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/extra/imagemagick/build b/extra/imagemagick/build new file mode 100755 index 00000000..e5836de3 --- /dev/null +++ b/extra/imagemagick/build @@ -0,0 +1,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 |