repo/extra/libass/build

18 lines
316 B
Plaintext
Raw Normal View History

2019-07-18 07:27:47 +00:00
#!/bin/sh -e
2021-07-07 11:02:09 +00:00
patch -p1 < no-fribidi.patch
# Remove fribidi configure checks.
sed -e 's/as_fn_error.*fribidi/: 0 "/' \
-e '/pkg_requires="fribidi >= .*/d' \
configure > _
mv -f _ configure
2021-07-28 09:36:43 +00:00
sh ./configure \
2021-07-07 11:02:09 +00:00
FRIBIDI_LIBS=" " \
2019-07-18 07:27:47 +00:00
--prefix=/usr \
2020-10-27 14:28:11 +00:00
--enable-fontconfig
2019-07-18 07:27:47 +00:00
make
2023-03-02 14:40:00 +00:00
make DESTDIR="$1" install