Skip to content

Commit

Permalink
Merge pull request #30 from zevlee/update-readme
Browse files Browse the repository at this point in the history
Update README.md
  • Loading branch information
zevlee authored Sep 19, 2023
2 parents 50413b5 + 65f38fd commit 8f26bbb
Showing 1 changed file with 16 additions and 16 deletions.
32 changes: 16 additions & 16 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ The included word lists are derived from the EFF's word lists found [here](https

### Building on Windows
1. MSYS2 is needed to build on Windows. [Get it from the MSYS2 website.](https://www.msys2.org/)
2. Go to your folder for MSYS2 and run ``mingw64.exe``. The following commands will be executed in the console that appears.
2. Go to your folder for MSYS2 and run `mingw64.exe`. The following commands will be executed in the console that appears.
3. Install git.
```
pacman -S git
Expand All @@ -24,17 +24,17 @@ pacman -S git
```
git clone https://github.com/zevlee/passphraser.git
```
5. Enter the ``windows`` directory.
5. Enter the `windows` directory.
```
cd passphraser/windows
```
6. Run ``bootstrap.sh`` to install any missing dependencies.
6. Run `bootstrap.sh` to install any missing dependencies.
```
chmod +x bootstrap.sh && ./bootstrap.sh
./bootstrap.sh
```
7. Run ``build.sh``.
7. Run `build.sh`.
```
chmod +x build.sh && ./build.sh
./build.sh
```
Create a portable executable by adding the portable option
```
Expand All @@ -47,17 +47,17 @@ Create a portable executable by adding the portable option
```
git clone https://github.com/zevlee/passphraser.git
```
3. Enter the ``macos`` directory.
3. Enter the `macos` directory.
```
cd passphraser/macos
```
4. Run ``bootstrap.sh`` to install any missing dependencies.
4. Run `bootstrap.sh` to install any missing dependencies.
```
chmod +x bootstrap.sh && ./bootstrap.sh
./bootstrap.sh
```
5. Run ``build.sh``.
5. Run `build.sh`.
```
chmod +x build.sh && ./build.sh
./build.sh
```
Enable code signing by adding the Common Name of the certificate as the first argument. Without this, adhoc signing will be used.
```
Expand All @@ -78,15 +78,15 @@ Notarization can alternatively be enabled by adding Apple ID, Team ID, and an ap
```
git clone https://github.com/zevlee/passphraser.git
```
3. Enter the ``linux`` directory.
3. Enter the `linux` directory.
```
cd passphraser/linux
```
4. Run ``bootstrap.sh`` to install any missing dependencies.
4. Run `bootstrap.sh` to install any missing dependencies.
```
chmod +x bootstrap.sh && ./bootstrap.sh
./bootstrap.sh
```
5. Run ``build.sh``.
5. Run `build.sh`.
```
chmod +x build.sh && ./build.sh
./build.sh
```

0 comments on commit 8f26bbb

Please sign in to comment.