mirror of
https://git.disroot.org/FollieHiyuki/dotfiles.git
synced 2024-11-25 00:38:23 -05:00
18 lines
307 B
Bash
Executable File
18 lines
307 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
# Needs musl-fts, ncurses
|
|
|
|
git clone https://github.com/FollieHiyuki/nnn.git
|
|
cd nnn
|
|
|
|
export LDLIBS=-lfts
|
|
|
|
if command -v doas >/dev/null
|
|
then
|
|
doas -- make O_NERD=1 O_NOBATCH=1 O_GITSTATUS=1 PREFIX=/usr install
|
|
else
|
|
sudo make O_NERD=1 O_NOBATCH=1 O_GITSTATUS=1 PREFIX=/usr install
|
|
fi
|
|
|
|
cd ..
|