mirror of
https://github.com/dslm4515/BMLFS.git
synced 2026-01-14 00:33:30 +00:00
14 lines
282 B
Bash
Executable File
14 lines
282 B
Bash
Executable File
#! /bin/bash
|
|
|
|
# source: https://people.freedesktop.org/~hughsient/releases/libgusb-0.3.0.tar.xz
|
|
|
|
mkdir build &&
|
|
cd build &&
|
|
|
|
|
|
meson --prefix=/usr -Ddocs=false .. &&
|
|
|
|
read -p "Compile? " && ninja -j4 &&
|
|
read -p "Install? " && sudo -S porg -lp libgusb-0.3.0 "ninja install -j1 "
|
|
|