diff options
Diffstat (limited to 'extra/libcups/build')
-rwxr-xr-x | extra/libcups/build | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/extra/libcups/build b/extra/libcups/build new file mode 100755 index 00000000..7c011197 --- /dev/null +++ b/extra/libcups/build @@ -0,0 +1,14 @@ +#!/bin/sh -e + +./configure \ + --prefix=/usr \ + --libdir=/usr/lib \ + --sbindir=/usr/bin \ + --disable-systemd \ + --without-python \ + --without-perl \ + --without-rcdir \ + --with-components=libcups + +make +make DESTDIR="$1" install |