From 7f7380b6f87462a8dbdcb1d7c50a4eaf5ea91145 Mon Sep 17 00:00:00 2001 From: Brian Barto Date: Wed, 11 Jan 2017 21:03:32 -0500 Subject: [PATCH] Remove install file since it is no longer needed deleted: INSTALL.md --- INSTALL.md | 137 ----------------------------------------------------- 1 file changed, 137 deletions(-) delete mode 100644 INSTALL.md diff --git a/INSTALL.md b/INSTALL.md deleted file mode 100644 index ba580d2..0000000 --- a/INSTALL.md +++ /dev/null @@ -1,137 +0,0 @@ -Installation ------------- - -Below are installation instructions for various operating systems. Use the set of instructions that -best applies to you. If your operating system is missing from the list, see 'Generic Instructions' -at the bottom for help. - -If you can supply instructions for an operating system that is not listed here, please email me or -submit a pull request updating this document. - -#### Ubuntu/Debian/Mint Linux - -``` -sudo apt-get update -sudo apt-get install lib32ncurses5-dev lib32ncursesw5-dev -git clone https://github.com/bartobri/no-more-secrets.git -cd ./no-more-secrets -make -sudo make install -``` - -#### Fedora Linux - -``` -sudo dnf update --refresh -sudo dnf install ncurses-devel -git clone https://github.com/bartobri/no-more-secrets.git -cd ./no-more-secrets -make -sudo make install -``` - -#### Redhat/Cent OS Linux - -``` -sudo yum update -sudo yum install ncurses-devel -git clone https://github.com/bartobri/no-more-secrets.git -cd ./no-more-secrets -make -sudo make install -``` - -#### Arch Linux - -``` -sudo pacman -Sy -sudo pacman -S ncurses -git clone https://github.com/bartobri/no-more-secrets.git -cd ./no-more-secrets -make -sudo make install -``` - -#### openSUSE - -Via package manager: - -``` -sudo zypper ar http://download.opensuse.org/repositories/games/openSUSE_Tumbleweed/ games -sudo zypper ref -sudo zypper in no-more-secrets -``` - -From source: -``` -sudo zypper ref -sudo zypper in ncurses-devel -git clone https://github.com/bartobri/no-more-secrets.git -cd ./no-more-secrets -make -sudo make install -``` - -#### Mac OSX - -Install the Homebrew package manager by following the instructions on the website: http://brew.sh/ - -Once Homebrew is installed, you can install no-more-secrets: - -``` -brew install no-more-secrets -``` - -#### FreeBSD - -To install the port: -``` -cd /usr/ports/misc/nms/ -make install clean -``` - -To add the package: -``` -pkg install nms -``` - -#### Generic Instructions - -First, make sure you have the ncurses header installed: -``` -ls /usr/include | grep ncurses.h -``` -Also make sure you have the ncurses library for wide character support: -``` -ls /usr/lib | grep libncursesw.so -``` -If either file is missing, you may need to install the ncurses and/or ncursesw library. All linux -distributions should have these available from their package manager. Usually they are both included -in a single package named something along the lines of 'ncurses'. However, on some distrubutions, such -as Ubuntu, you need to install them as separate packages. For example: -``` -sudo apt-get update -sudo apt-get install lib32ncurses5-dev lib32ncursesw5-dev -``` -Use your package manager to search for the "ncurses" package. Install -it. If you see two different packages for "ncurses" and "ncursesw", install them both (as shown above -in the Ubuntu example). - -Next, download and build the standalone executable: -``` -git clone https://github.com/bartobri/no-more-secrets.git -cd ./no-more-secrets -make -sudo make install -``` - -#### Other - Docker - -@freiit has created a dockerfile for those interested: - -https://github.com/freiit/no-more-secrets-docker - - - - -[Back to README](README.md)