Skip to content

Commit 55ca8e6

Browse files
committed
add build script and application configuration for IFF Master
1 parent 5e2c350 commit 55ca8e6

File tree

3 files changed

+32
-0
lines changed

3 files changed

+32
-0
lines changed

Diff for: build.sh

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
#!/bin/bash
2+
3+
cd cmd/iffmaster
4+
5+
echo "Archives will be created in cmd/iffmaster"
6+
7+
echo "Building for Linux"
8+
fyne package -os linux -name iffmaster-linux -icon icon.png
9+
10+
echo "Building for Windows"
11+
fyne package -os windows -name iffmaster-windows -icon icon.png
12+
13+
echo "Building for Darwin"
14+
fyne package -os darwin -name iffmaster-darwin -icon icon.png
15+
16+
echo "Building for WebAssembly"
17+
fyne package -os web -name iffmaster-wasm -icon icon.png

Diff for: cmd/iffmaster/FyneApp.toml

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
Website = "https://github.com/mattrust/iffmaster"
2+
3+
[Details]
4+
Icon = "Icon.png"
5+
Name = "IFF Master"
6+
ID = "com.example.iffmaster"
7+
Version = "1.0.0"
8+
Build = 13
9+
10+
[LinuxAndBSD]
11+
GenericName = "File Viewer"
12+
Categories = ["Utility", "Viewer"]
13+
Comment = "Inspect IFF files"
14+
Keywords = ["browser", "iff", "viewer", "file"]
15+
ExecParams = "--version"

Diff for: cmd/iffmaster/icon.png

1.7 KB
Loading

0 commit comments

Comments
 (0)