mirror of
https://codeberg.org/kiss-community/repo
synced 2024-11-16 03:30:23 -07:00
14 lines
227 B
Bash
Executable File
14 lines
227 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
./configure \
|
|
AUTOMAKE=/bin/true \
|
|
--prefix=/usr \
|
|
--localstatedir=/var \
|
|
--sysconfdir=/etc \
|
|
--with-xmldir=/etc/fonts \
|
|
--enable-static \
|
|
--disable-nls
|
|
|
|
make
|
|
make DESTDIR="$1" install
|