diff --git a/install.html b/install.html index facf304..9f7c346 100644 --- a/install.html +++ b/install.html @@ -1,257 +1,156 @@ - +
--fountain2json, fountainfmt, fountain2html are a command line programs run from a shell like Bash. You can find compiled version in the releases -
--This is generalized instructions for a release. -
--Compiled versions are available for Mac OS X (x86 and M1 processors, macos-amd64, macos-arm64), Linux (x86 processor, linux-amd64), Windows (x86 processor, windows-amd64), Rapsberry Pi OS (arm7 processor, raspbian-arm7) and Pine64 (arm64 processor, linux-arm64) -
--VERSION_NUMBER is a symantic version number (e.g. v0.1.2) -
--For all the released version go to the project page on Github and click latest release -
+ + +{ “title”: “fountain, a Go package for working with Fountain screenplay format” }
+fountain2json, fountainfmt, fountain2html are a command line programs run from a shell like Bash. You can find compiled version in the releases
+This is generalized instructions for a release.
+Compiled versions are available for Mac OS X (x86 and M1 processors, macos-amd64, macos-arm64), Linux (x86 processor, linux-amd64), Windows (x86 processor, windows-amd64), Rapsberry Pi OS (arm7 processor, raspbian-arm7) and Pine64 (arm64 processor, linux-arm64)
+VERSION_NUMBER is a symantic version number (e.g. v0.1.2)
+For all the released version go to the project page on Github and click latest release
--https://github.com/rsdoiel/fountain/releases/latest -
+https://github.com/rsdoiel/fountain/releases/latest
-Platform - | --Zip Filename - | +Platform | +Zip Filename |
---|---|---|---|
-Windows - | --fountain-VERSION_NUMBER-windows-amd64.zip - | +Windows | +fountain-VERSION_NUMBER-windows-amd64.zip |
-Mac OS X - | --fountain-VERSION_NUMBER-macos-amd64.zip - | +Mac OS X | +fountain-VERSION_NUMBER-macos-amd64.zip |
-Mac OS X - | --fountain-VERSION_NUMBER-macos-arm64.zip - | +Mac OS X | +fountain-VERSION_NUMBER-macos-arm64.zip |
-Linux/Intel - | --fountain-VERSION_NUMBER-linux-amd64.zip - | +Linux/Intel | +fountain-VERSION_NUMBER-linux-amd64.zip |
-Raspbery Pi - | --fountain-VERSION_NUMBER-raspbian-arm7.zip - | +Raspbery Pi | +fountain-VERSION_NUMBER-raspbian-arm7.zip |
-Pine64 - | --fountain-VERSION_NUMBER-linux-arm64.zip - | +Pine64 | +fountain-VERSION_NUMBER-linux-arm64.zip |
-Here’s an example of the commands run in the Terminal App after downloading the zip file. -
+Here’s an example of the commands run in the Terminal App after downloading the zip file.
cd Downloads/
unzip fountain-*-macos-amd64.zip
mkdir -p $HOME/bin
cp -v bin/* $HOME/bin/
export PATH=$HOME/bin:$PATH
fountain -version
--Here’s an example of the commands run in from the Bash shell on Windows 10 after downloading the zip file. -
+Here’s an example of the commands run in from the Bash shell on Windows 10 after downloading the zip file.
cd Downloads/
unzip fountain-*-windows-amd64.zip
mkdir -p $HOME/bin
cp -v bin/* $HOME/bin/
export PATH=$HOME/bin:$PATH
fountain -version
--Here’s an example of the commands run in from the Bash shell after downloading the zip file. -
+Here’s an example of the commands run in from the Bash shell after downloading the zip file.
cd Downloads/
unzip fountain-*-linux-amd64.zip
mkdir -p $HOME/bin
cp -v bin/* $HOME/bin/
export PATH=$HOME/bin:$PATH
fountain -version
--Released version is for a Raspberry Pi 2 or later use (i.e. requires ARM 7 support). -
+Released version is for a Raspberry Pi 2 or later use (i.e. requires ARM 7 support).
-Here’s an example of the commands run in from the Bash shell after downloading the zip file. -
+Here’s an example of the commands run in from the Bash shell after downloading the zip file.
cd Downloads/
unzip fountain-*-raspbian-arm7.zip
mkdir -p $HOME/bin
cp -v bin/* $HOME/bin/
export PATH=$HOME/bin:$PATH
fountain -version
--The fountain command line programs are “go gettable”. Use the “go get” command to download the dependant packages as well as source code. -
+The fountain command line programs are “go gettable”. Use the “go get” command to download the dependant packages as well as source code.
go get -u github.com/rsdoiel/fountain/...
--Or clone the repstory and then compile -
+Or clone the repstory and then compile
cd
git clone https://github.com/rsdoiel/fountain src/github.com/rsdoiel/fountain
cd src/github.com/rsdoiel/fountain
@@ -259,35 +158,9 @@
make test
make install