mirror of
https://github.com/dslm4515/BMLFS.git
synced 2026-01-14 00:33:30 +00:00
12 lines
380 B
Bash
Executable File
12 lines
380 B
Bash
Executable File
#! /bin/bash
|
|
|
|
patch -Np1 -i ../libxml2-2.9.8-python3_hack-1.patch
|
|
sed -i '/_PyVerify_fd/,+1d' python/types.c
|
|
./configure --prefix=/usr \
|
|
--disable-static \
|
|
--with-history \
|
|
--with-python=/usr/bin/python3 \
|
|
--with-icu --with-threads &&
|
|
read -p "Compile?" && make -j2 &&
|
|
read -p "Install?" && sudo -S porg -lD "make -j1 install"
|