Warning, /utilities/isoimagewriter/AppImageBuilder.yml is written in an unsupported language. File is not indexed.

0001 # appimage-builder recipe see https://appimage-builder.readthedocs.io for details
0002 version: 1
0003 
0004 script: |
0005   # remove any existent binaries
0006   rm AppDir | true
0007   # compile and install binaries into AppDir
0008   cmake . -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr
0009   make install DESTDIR=AppDir
0010 
0011 AppDir:
0012   path: ./AppDir
0013   app_info:
0014     id: org.kde.isoimagewriter
0015     name: KDE ISO Image Writer
0016     icon: org.kde.isoimagewriter
0017     version: 1.0.0
0018     exec: usr/bin/isoimagewriter
0019     exec_args: $@
0020   apt:
0021     arch:
0022     - amd64
0023     allow_unauthenticated: true
0024     sources:
0025     - sourceline: deb http://archive.ubuntu.com/ubuntu/ jammy main restricted universe
0026         multiverse
0027     - sourceline: deb http://security.ubuntu.com/ubuntu/ jammy-security main restricted
0028         universe multiverse
0029     - sourceline: deb http://archive.ubuntu.com/ubuntu/ jammy-updates main restricted
0030         universe multiverse
0031     - sourceline: deb http://archive.neon.kde.org/user jammy main
0032     include:
0033     - libc6:amd64
0034     - libudev1
0035     - libgcc-s1
0036     - libgpgmepp6
0037     - libkf5archive5
0038     - libkf5coreaddons5
0039     - libkf5crash5
0040     - libkf5i18n5
0041     - libkf5iconthemes5
0042     - libkf5solid5
0043     - libkf5widgetsaddons5
0044     - libqgpgme7
0045     - libqt5core5a
0046     - libqt5dbus5
0047     - libqt5gui5
0048     - libqt5network5
0049     - libqt5test5
0050     - libqt5widgets5
0051     - libstdc++6
0052     - qtwayland5
0053     - bash
0054     - libwayland-cursor0
0055     - libwayland-client0
0056   files:
0057     include: []
0058     exclude:
0059     - usr/share/man
0060     - usr/share/doc/*/README.*
0061     - usr/share/doc/*/changelog.*
0062     - usr/share/doc/*/NEWS.*
0063     - usr/share/doc/*/TODO.*
0064   test:
0065     fedora-30:
0066       image: appimagecrafters/tests-env:fedora-30
0067       command: ./AppRun
0068     debian-stable:
0069       image: appimagecrafters/tests-env:debian-stable
0070       command: ./AppRun
0071     centos-7:
0072       image: appimagecrafters/tests-env:centos-7
0073       command: ./AppRun
0074     ubuntu-xenial:
0075       image: appimagecrafters/tests-env:ubuntu-xenial
0076       command: ./AppRun
0077 AppImage:
0078   arch: x86_64
0079   update-information: guess
0080   sign-key: E0A3EB202F8E57528E13E72FD7574483BB57B18D
0081