Skip to content

Commit 1883a61

Browse files
authored
Add files via upload
1 parent 4edfb2f commit 1883a61

1 file changed

Lines changed: 96 additions & 0 deletions

File tree

Linux/simple-nfs-gui-gambas.yml

Lines changed: 96 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,96 @@
1+
# appimage-builder recipe see https://appimage-builder.readthedocs.io for details
2+
version: 1
3+
script:
4+
- rm -rf AppDir || true
5+
- mkdir -p AppDir/usr/bin
6+
- cp simple-nfs-gui.gambas AppDir/usr/bin/
7+
- mkdir -p AppDir/usr/share/icons/hicolor/32x32/apps/
8+
- cp mapview.png AppDir/usr/share/icons/hicolor/32x32/apps/
9+
AppDir:
10+
path: ./AppDir
11+
app_info:
12+
id: org.appimagecrafters.simple-nfs-gui-gambas
13+
name: simple-nfs-gui-gambas
14+
icon: mapview
15+
version: latest
16+
exec: usr/bin/gbr3
17+
exec_args: $APPDIR/usr/bin/simple-nfs-gui.gambas -- $@
18+
apt:
19+
arch: amd64
20+
allow_unauthenticated: true
21+
sources:
22+
- sourceline: deb http://fr.archive.ubuntu.com/ubuntu/ focal main restricted
23+
- sourceline: deb http://fr.archive.ubuntu.com/ubuntu/ focal-updates main restricted
24+
- sourceline: deb http://fr.archive.ubuntu.com/ubuntu/ focal universe
25+
- sourceline: deb http://fr.archive.ubuntu.com/ubuntu/ focal-updates universe
26+
- sourceline: deb http://fr.archive.ubuntu.com/ubuntu/ focal multiverse
27+
- sourceline: deb http://fr.archive.ubuntu.com/ubuntu/ focal-updates multiverse
28+
- sourceline: deb http://security.ubuntu.com/ubuntu focal-security main restricted
29+
- sourceline: deb http://security.ubuntu.com/ubuntu focal-security universe
30+
- sourceline: deb http://security.ubuntu.com/ubuntu focal-security multiverse
31+
- sourceline: deb http://archive.neon.kde.org/user focal main
32+
- sourceline: deb http://ppa.launchpad.net/gambas-team/gambas3/ubuntu focal main
33+
include:
34+
- gambas3-gb-form
35+
- gambas3-gb-qt5
36+
- gambas3-gb-gtk3
37+
- gambas3-runtime
38+
- gtk2-engines-pixbuf
39+
- libaudio2
40+
- libexpat1
41+
- libgcrypt20
42+
- libgtk2.0-0
43+
- liblz4-1
44+
- liblzma5
45+
- libpcre3
46+
- libsm6
47+
- libsystemd0
48+
- libxau6
49+
- libxdmcp6
50+
- libxext6
51+
- libxfixes-dev
52+
- libxinerama1
53+
- libxrender1
54+
- libxt6
55+
- libfontconfig1
56+
- libfreetype6
57+
exclude:
58+
- adwaita-icon-theme
59+
- adwaita-icon-theme-full
60+
- humanity-icon-theme
61+
files:
62+
exclude:
63+
- usr/share/man
64+
- usr/share/doc/*/README.*
65+
- usr/share/doc/*/changelog.*
66+
- usr/share/doc/*/NEWS.*
67+
- usr/share/doc/*/TODO.*
68+
- usr/include
69+
runtime:
70+
env:
71+
GB_PATH: $APPDIR/usr/bin/gbr3
72+
test:
73+
fedora:
74+
image: appimagecrafters/tests-env:fedora-30
75+
command: ./AppRun
76+
use_host_x: true
77+
debian:
78+
image: appimagecrafters/tests-env:debian-stable
79+
command: ./AppRun
80+
use_host_x: true
81+
arch:
82+
image: appimagecrafters/tests-env:archlinux-latest
83+
command: ./AppRun
84+
use_host_x: true
85+
centos:
86+
image: appimagecrafters/tests-env:centos-7
87+
command: ./AppRun
88+
use_host_x: true
89+
ubuntu:
90+
image: appimagecrafters/tests-env:ubuntu-xenial
91+
command: ./AppRun
92+
use_host_x: true
93+
AppImage:
94+
arch: x86_64
95+
update-information: guess
96+
sign-key: None

0 commit comments

Comments
 (0)