forked from lrvick/dotfiles
feat: add fedora package install command to makefile
This commit is contained in:
parent
dfd774bfa6
commit
0b4655de12
28
Makefile
28
Makefile
|
@ -47,6 +47,34 @@ install-apt-essentials:
|
||||||
scdaemon \
|
scdaemon \
|
||||||
-y
|
-y
|
||||||
|
|
||||||
|
install-dnf-essentials:
|
||||||
|
sudo dnf install -y \
|
||||||
|
tig \
|
||||||
|
htop \
|
||||||
|
tree \
|
||||||
|
ripgrep \
|
||||||
|
net-tools \
|
||||||
|
stow \
|
||||||
|
zsh \
|
||||||
|
rsync \
|
||||||
|
shellcheck \
|
||||||
|
pass \
|
||||||
|
make \
|
||||||
|
cmake \
|
||||||
|
ninja-build \
|
||||||
|
gettext \
|
||||||
|
curl \
|
||||||
|
jq \
|
||||||
|
wget \
|
||||||
|
lua \
|
||||||
|
luarocks \
|
||||||
|
git-lfs \
|
||||||
|
magic-wormhole \
|
||||||
|
python3-virtualenv \
|
||||||
|
qemu-system-x86 \
|
||||||
|
gnupg2 \
|
||||||
|
@development-tools
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
@echo "Removing stowed configurations..."
|
@echo "Removing stowed configurations..."
|
||||||
stow -D --target=$(HOME) $(GENERAL_DIRS)
|
stow -D --target=$(HOME) $(GENERAL_DIRS)
|
||||||
|
|
Loading…
Reference in New Issue