mirror of
https://github.com/dslm4515/BMLFS.git
synced 2026-01-14 00:33:30 +00:00
12 lines
445 B
Bash
Executable File
12 lines
445 B
Bash
Executable File
#! /bin/bash
|
|
patch -Np0 -i ../freetype-2.9.1-subpixel.patch
|
|
patch -Np0 -i ../freetype-2.9.1-validate.patch
|
|
|
|
sed -ri "s:.*(AUX_MODULES.*valid):\1:" modules.cfg &&
|
|
sed -r "s:.*(#.*SUBPIXEL_RENDERING) .*:\1:" \
|
|
-i include/freetype/config/ftoption.h
|
|
./configure --prefix=/usr --enable-freetype-config --disable-static &&
|
|
vi builds/unix/unix-cc.mk &&
|
|
read -p "Compile?" && make -j2 &&
|
|
read -p "Install?" && sudo -S porg -lD "make -j1 install"
|