From 9691d8a84d98e3b0ef3fb7824f37ab46277cbc9f Mon Sep 17 00:00:00 2001 From: Andrii Nikitin Date: Wed, 29 Nov 2023 12:41:04 +0100 Subject: [PATCH] Add INSTALL.txt --- INSTALL.txt | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 INSTALL.txt diff --git a/INSTALL.txt b/INSTALL.txt new file mode 100644 index 0000000..e440757 --- /dev/null +++ b/INSTALL.txt @@ -0,0 +1,27 @@ +* Install from source: + +sudo make install + +* Install rpm (the only dependency are bash and m4): + +wget -r --no-directories -l1 -np https://download.opensuse.org/repositories/home:/andriinikitin:/environ/rpm/noarch/ -A "environ-*.noarch.rpm" +rpm -i environ*.rpm + +* Install deb (the only dependency are bash and m4): + +wget -r --no-directories -l1 -np https://download.opensuse.org/repositories/home:/andriinikitin:/environ/deb/amd64/ -A "environ_*.deb" +dpkg -i environ*.deb + +* Add repository on openSUSE: + +zypper ar -f http://download.opensuse.org/repositories/home:andriinikitin/rpm environ +zypper --gpg-auto-import-keys ref environ +zypper install environ + +* Add repository on Debian/Ubuntu: + +echo 'deb http://download.opensuse.org/repositories/home:andriinikitin:environ/deb/ /' > /etc/apt/sources.list.d/environ.list +curl -fsSL http://download.opensuse.org/repositories/home:andriinikitin:environ/deb/Release.key | gpg --dearmor | tee /etc/apt/trusted.gpg.d/environ.gpg +apt update +apt install environ +