forked from kiss-community/repo
16 lines
269 B
Bash
Executable File
16 lines
269 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
patch -p1 < fontconfig-fix-1744377.patch
|
|
|
|
./configure \
|
|
AUTOMAKE=/bin/true \
|
|
--prefix=/usr \
|
|
--localstatedir=/var \
|
|
--sysconfdir=/etc \
|
|
--with-xmldir=/etc/fonts \
|
|
--enable-static \
|
|
--disable-nls
|
|
|
|
make
|
|
make DESTDIR="$1" install
|