Skip to content

Commit b37c465

Browse files
committed
ci: add AppImage builds and full platform coverage for campfire and stack_duo
1 parent 70df0e5 commit b37c465

15 files changed

Lines changed: 1078 additions & 0 deletions

.github/workflows/build.yaml

Lines changed: 926 additions & 0 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;

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;
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<component type="desktop-application">
3+
<id>com.cypherstack.campfire</id>
4+
<metadata_license>CC0-1.0</metadata_license>
5+
<project_license>GPL-3.0-only</project_license>
6+
<name>Campfire</name>
7+
<summary>Your privacy. Your wallet. Your Firo.</summary>
8+
<description>
9+
<p>
10+
Campfire is an open-source, non-custodial Firo wallet.
11+
</p>
12+
</description>
13+
<url type="homepage">https://campfireprivacy.com</url>
14+
<url type="bugtracker">https://github.com/cypherstack/stack_wallet/issues</url>
15+
<content_rating type="oars-1.1"/>
16+
</component>

0 commit comments

Comments
 (0)