mirror of
https://github.com/dslm4515/BMLFS.git
synced 2026-02-01 03:26:07 +00:00
11 lines
305 B
Bash
11 lines
305 B
Bash
#! /bin/bash
|
|
|
|
# source: http://hisham.hm/htop/releases/2.2.0/htop-2.2.0.tar.gz
|
|
|
|
./configure --prefix=/usr --sysconfdir=/etc --enable-proc \
|
|
--enable-cgroup --enable-unicode --build=x86_64-linux-musl &&
|
|
|
|
read -p "Compile? " && make -j4 &&
|
|
read -p "Install? " && sudo -S porg -lD "make -j1 install"
|
|
|