Skip to content

Commit 51db6c7

Browse files
Merge pull request #1354 from cypherstack/add-multi-app-builds
Add multi app builds
2 parents e4efcee + 8208fe7 commit 51db6c7

16 files changed

Lines changed: 1143 additions & 48 deletions

.github/workflows/build.yaml

Lines changed: 991 additions & 48 deletions
Large diffs are not rendered by default.

appimage/campfire/AppRun

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
#!/bin/bash
2+
SELF=$(readlink -f "$0")
3+
HERE=${SELF%/*}
4+
export LD_LIBRARY_PATH="${HERE}/lib:${LD_LIBRARY_PATH}"
5+
exec "${HERE}/campfire" "$@"

appimage/campfire/campfire.desktop

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
[Desktop Entry]
2+
Name=Campfire
3+
Comment=Your privacy. Your wallet. Your Firo.
4+
Exec=campfire
5+
Icon=campfire
6+
Type=Application
7+
Categories=Finance;

appimage/stack_duo/AppRun

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
#!/bin/bash
2+
SELF=$(readlink -f "$0")
3+
HERE=${SELF%/*}
4+
export LD_LIBRARY_PATH="${HERE}/lib:${LD_LIBRARY_PATH}"
5+
exec "${HERE}/stack_duo" "$@"
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
[Desktop Entry]
2+
Name=Stack Duo
3+
Comment=An open-source, multicoin wallet for everyone
4+
Exec=stack_duo
5+
Icon=stack_duo
6+
Type=Application
7+
Categories=Finance;

appimage/stack_wallet/AppRun

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
#!/bin/bash
2+
SELF=$(readlink -f "$0")
3+
HERE=${SELF%/*}
4+
export LD_LIBRARY_PATH="${HERE}/lib:${LD_LIBRARY_PATH}"
5+
exec "${HERE}/stack_wallet" "$@"
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
[Desktop Entry]
2+
Name=Stack Wallet
3+
Comment=Open-source non-custodial cryptocurrency wallet
4+
Exec=stack_wallet
5+
Icon=stack_wallet
6+
Type=Application
7+
Categories=Finance;
-24 KB
Loading

flatpak/campfire.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
#!/bin/sh
2+
exec /app/lib/campfire/campfire "$@"
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
[Desktop Entry]
2+
Name=Campfire
3+
Comment=Your privacy. Your wallet. Your Firo.
4+
Exec=campfire
5+
Icon=com.cypherstack.campfire
6+
Type=Application
7+
Categories=Finance;

0 commit comments

Comments
 (0)