12 lines
233 B
Bash
Executable File
12 lines
233 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
--disable-gtk \
|
|
--disable-dbus \
|
|
--with-drivers=ALL \
|
|
--with-fontpaths=/usr/share/ghostscript/fonts/:/usr/share/fonts
|
|
|
|
make so all
|
|
make DESTDIR="$1" install-so install
|