mirror of
https://codeberg.org/kiss-community/repo
synced 2024-11-05 22:45:50 -07:00
15 lines
260 B
Bash
Executable File
15 lines
260 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
patch -p1 < no-fribidi.patch
|
|
|
|
sed -i 's/as_fn_error.*fribidi/: 0 "/' configure
|
|
sed -i '/pkg_requires="fribidi >= .*/d' configure
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
--enable-fontconfig \
|
|
--disable-harfbuzz
|
|
|
|
make
|
|
make DESTDIR="$1" install
|