mirror of
https://github.com/dslm4515/BMLFS.git
synced 2026-01-14 00:33:30 +00:00
11 lines
267 B
Bash
11 lines
267 B
Bash
#! /bin/bash
|
|
|
|
# source: https://gitlab.gnome.org/GNOME/gnome-disk-utility.git
|
|
|
|
mkdir BUILD && cd BUILD &&
|
|
|
|
meson --prefix=/usr -D libsystemd=false &&
|
|
|
|
read -p "Compile? " && ninja -j4 &&
|
|
read -p "Install? " && sudo -S porg -lp gnome-disk-utility "ninja -j1 install"
|