mirror of
https://github.com/dslm4515/BMLFS.git
synced 2026-02-01 03:26:07 +00:00
10 lines
246 B
Bash
Executable File
10 lines
246 B
Bash
Executable File
#! /bin/bash
|
|
|
|
# source: https://github.com/libass/libass/releases/download/0.14.0/libass-0.14.0.tar.xz
|
|
|
|
./configure --prefix=/usr --disable-static &&
|
|
|
|
read -p "Compile? " && make -j4 &&
|
|
read -p "Install? " && sudo -S porg -lD "make -j1 install"
|
|
|