Skip to content

Commit

Permalink
add arch linux support for installing dependencies using ./make.sh deps
Browse files Browse the repository at this point in the history
  • Loading branch information
d99kris committed Oct 28, 2023
1 parent 7cbe848 commit 47639f4
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/common/src/version.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@

#pragma once

#define NCHAT_VERSION "3.93"
#define NCHAT_VERSION "3.94"
2 changes: 2 additions & 0 deletions make.sh
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,8 @@ if [[ "${DEPS}" == "1" ]]; then
sudo emerge -n dev-util/cmake dev-util/gperf sys-apps/help2man sys-libs/readline dev-libs/openssl sys-libs/ncurses sys-libs/zlib dev-db/sqlite sys-apps/file dev-lang/go || exiterr "deps failed (gentoo), exiting."
elif [[ "${NAME}" == "Fedora Linux" ]]; then
sudo dnf -y install git cmake clang golang ccache file-devel file-libs gperf readline-devel openssl-devel ncurses-devel sqlite-devel zlib-devel
elif [[ "${NAME}" == "Arch Linux" ]]; then
sudo pacman -S ccache cmake file go gperf help2man ncurses openssl readline sqlite zlib base-devel
else
exiterr "deps failed (unsupported linux distro ${NAME}), exiting."
fi
Expand Down
2 changes: 1 addition & 1 deletion src/nchat.1
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
.\" DO NOT MODIFY THIS FILE! It was generated by help2man.
.TH NCHAT "1" "October 2023" "nchat v3.93" "User Commands"
.TH NCHAT "1" "October 2023" "nchat v3.94" "User Commands"
.SH NAME
nchat \- ncurses chat
.SH SYNOPSIS
Expand Down

0 comments on commit 47639f4

Please sign in to comment.