-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c5bb51a
commit 6a45635
Showing
1 changed file
with
27 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 | ||
|