[Gambas-user] My first working gambas appimage

Fabien Bodard gambas.fr at gmail.com
Fri Jan 8 20:41:10 CET 2021


>
> Mmm... If the Gambas IDE can have an AppImage generator, it will be cool.
>
> Does the AppImage builder program still require 'apt'?
>
> --
> Benoît Minisini



yes ... the receipe is simple to generate ... it need just the gambas
deb package name

here :

# appimage-builder recipe see https://appimage-builder.readthedocs.io
for details
version: 1
script:
  - rm -rf AppDir || true
  - mkdir -p AppDir/usr/bin AppDir/usr/share/icons/hicolor/32x32/apps/
  - cp project/mapview.png AppDir/usr/share/icons/hicolor/32x32/apps/
  - cp project.gambas AppDir/usr/bin/appimage-demo-gambas3.gambas
AppDir:
  path: ./AppDir
  app_info:
    id: org.appimagecrafters.appimage-demo-gambas3
    name: appimage-demo-gambas3
    icon: mapview
    version: latest
    exec: usr/bin/gbr3
    exec_args: $APPDIR/usr/bin/appimage-demo-gambas3.gambas -- $@
  apt:
    arch: amd64
    allow_unauthenticated: true
    sources:
    - sourceline: deb http://mx.archive.ubuntu.com/ubuntu/ bionic main
restricted
    - sourceline: deb http://mx.archive.ubuntu.com/ubuntu/
bionic-updates main restricted
    - sourceline: deb http://mx.archive.ubuntu.com/ubuntu/ bionic universe
    - sourceline: deb http://mx.archive.ubuntu.com/ubuntu/
bionic-updates universe
    - sourceline: deb http://mx.archive.ubuntu.com/ubuntu/ bionic multiverse
    - sourceline: deb http://mx.archive.ubuntu.com/ubuntu/
bionic-updates multiverse
    - sourceline: deb http://mx.archive.ubuntu.com/ubuntu/
bionic-backports main restricted
        universe multiverse
    - sourceline: deb http://security.ubuntu.com/ubuntu
bionic-security main restricted
    - sourceline: deb http://security.ubuntu.com/ubuntu bionic-security universe
    - sourceline: deb http://security.ubuntu.com/ubuntu
bionic-security multiverse
    - sourceline: deb http://archive.neon.kde.org/user bionic main
    - sourceline: deb
http://ppa.launchpad.net/gambas-team/gambas3/ubuntu bionic main
    include:
    - gambas3-gb-form
    - gambas3-gb-gtk3
    - gambas3-runtime
    exclude:
    - adwaita-icon-theme
    - adwaita-icon-theme-full
    - humanity-icon-theme
  files:
    exclude:
    - usr/share/man
    - usr/share/doc/*/README.*
    - usr/share/doc/*/changelog.*
    - usr/share/doc/*/NEWS.*
    - usr/share/doc/*/TODO.*
    - usr/include
  runtime:
    env:
      GB_PATH: $APPDIR/usr/bin/gbr3
  test:
    fedora:
      image: appimagecrafters/tests-env:fedora-30
      command: ./AppRun
      use_host_x: true
#     debian:
#       image: appimagecrafters/tests-env:debian-stable
#       command: ./AppRun
#       use_host_x: true
#     arch:
#       image: appimagecrafters/tests-env:archlinux-latest
#       command: ./AppRun
#       use_host_x: true
#     centos:
#       image: appimagecrafters/tests-env:centos-7
#       command: ./AppRun
#       use_host_x: true
#     ubuntu:
#       image: appimagecrafters/tests-env:ubuntu-xenial
#       command: ./AppRun
#       use_host_x: true
AppImage:
  arch: x86_64
  update-information: guess
  sign-key: None




This is really simple...
Note :

the app image weight is
65 mo with qt5
40 with gtk3
38 with gtk2

and only 28 with qt4

> ----[ http://gambaswiki.org/wiki/doc/netiquette ]----



-- 
Fabien Bodard


More information about the User mailing list