|
1 | | -# appimage-builder recipe see https://appimage-builder.readthedocs.io for details |
2 | | -version: 1 |
3 | | -script: |
4 | | - - rm -rf AppDir || true |
5 | | - - cp -r build/linux/x64/release/bundle AppDir |
6 | | - - mkdir -p AppDir/usr/share/icons/hicolor/64x64/apps/ |
7 | | - - mkdir -p AppDir/usr/share/metainfo/ |
8 | | - - cp linux/debian/usr/share/icons/hicolor AppDir/usr/share/icons/hicolor -r |
9 | | - - cp linux/debian/usr/share/metainfo/dev.linwood.setonix.appdata.xml AppDir/usr/share/metainfo/ |
10 | | - |
11 | | -AppDir: |
12 | | - path: ./AppDir |
13 | | - app_info: |
14 | | - id: dev.linwood.setonix |
15 | | - name: Linwood Setonix |
16 | | - icon: dev.linwood.setonix |
17 | | - version: 0.1.0 |
18 | | - exec: setonix |
19 | | - exec_args: $@ |
20 | | - apt: |
21 | | - arch: amd64 |
22 | | - allow_unauthenticated: true |
23 | | - sources: |
24 | | - - sourceline: deb http://archive.ubuntu.com/ubuntu/ bionic main restricted universe multiverse |
25 | | - - sourceline: deb http://archive.ubuntu.com/ubuntu/ bionic-updates main restricted universe multiverse |
26 | | - - sourceline: deb http://archive.ubuntu.com/ubuntu/ bionic-backports main restricted universe multiverse |
27 | | - - sourceline: deb http://security.ubuntu.com/ubuntu bionic-security main restricted universe multiverse |
28 | | - include: |
29 | | - - libgtk-3-0 |
30 | | - - libsecret-1-dev |
31 | | - - libjsoncpp-dev |
32 | | - exclude: |
33 | | - - humanity-icon-theme |
34 | | - - hicolor-icon-theme |
35 | | - - adwaita-icon-theme |
36 | | - - ubuntu-mono |
37 | | - files: |
38 | | - include: [] |
39 | | - exclude: |
40 | | - - usr/share/man |
41 | | - - usr/share/doc/*/README.* |
42 | | - - usr/share/doc/*/changelog.* |
43 | | - - usr/share/doc/*/NEWS.* |
44 | | - - usr/share/doc/*/TODO.* |
45 | | - test: |
46 | | - fedora-30: |
47 | | - image: appimagecrafters/tests-env:fedora-30 |
48 | | - command: ./AppRun |
49 | | - use_host_x: true |
50 | | - debian-stable: |
51 | | - image: appimagecrafters/tests-env:debian-stable |
52 | | - command: ./AppRun |
53 | | - use_host_x: true |
54 | | - archlinux-latest: |
55 | | - image: appimagecrafters/tests-env:archlinux-latest |
56 | | - command: ./AppRun |
57 | | - use_host_x: true |
58 | | - centos-7: |
59 | | - image: appimagecrafters/tests-env:centos-7 |
60 | | - command: ./AppRun |
61 | | - use_host_x: true |
62 | | - ubuntu-xenial: |
63 | | - image: appimagecrafters/tests-env:ubuntu-xenial |
64 | | - command: ./AppRun |
65 | | - use_host_x: true |
66 | | - runtime: |
67 | | - env: |
68 | | - GDK_BACKEND: x11 |
69 | | - GIO_MODULE_DIR: $APPDIR/usr/lib/x86_64-linux-gnu/gio/modules/ |
70 | | -AppImage: |
71 | | - arch: x86_64 |
72 | | - update-information: guess |
| 1 | +# appimage-builder recipe see https://appimage-builder.readthedocs.io for details |
| 2 | +version: 1 |
| 3 | +script: |
| 4 | + - rm -rf AppDir || true |
| 5 | + - cp -r build/linux/x64/release/bundle AppDir |
| 6 | + - mkdir -p AppDir/usr/share/icons/hicolor/64x64/apps/ |
| 7 | + - mkdir -p AppDir/usr/share/metainfo/ |
| 8 | + - cp linux/debian/usr/share/icons/hicolor AppDir/usr/share/icons/hicolor -r |
| 9 | + - cp linux/debian/usr/share/metainfo/dev.linwood.setonix.appdata.xml AppDir/usr/share/metainfo/ |
| 10 | + |
| 11 | +AppDir: |
| 12 | + path: ./AppDir |
| 13 | + app_info: |
| 14 | + id: dev.linwood.setonix |
| 15 | + name: Linwood Setonix |
| 16 | + icon: dev.linwood.setonix |
| 17 | + version: 0.1.0 |
| 18 | + exec: setonix |
| 19 | + exec_args: $@ |
| 20 | + apt: |
| 21 | + arch: amd64 |
| 22 | + allow_unauthenticated: true |
| 23 | + sources: |
| 24 | + - sourceline: deb http://archive.ubuntu.com/ubuntu/ bionic main restricted universe multiverse |
| 25 | + - sourceline: deb http://archive.ubuntu.com/ubuntu/ bionic-updates main restricted universe multiverse |
| 26 | + - sourceline: deb http://archive.ubuntu.com/ubuntu/ bionic-backports main restricted universe multiverse |
| 27 | + - sourceline: deb http://security.ubuntu.com/ubuntu bionic-security main restricted universe multiverse |
| 28 | + include: |
| 29 | + - libgtk-3-0 |
| 30 | + - libsecret-1-dev |
| 31 | + - libjsoncpp-dev |
| 32 | + exclude: |
| 33 | + - humanity-icon-theme |
| 34 | + - hicolor-icon-theme |
| 35 | + - adwaita-icon-theme |
| 36 | + - ubuntu-mono |
| 37 | + files: |
| 38 | + include: [] |
| 39 | + exclude: |
| 40 | + - usr/share/man |
| 41 | + - usr/share/doc/*/README.* |
| 42 | + - usr/share/doc/*/changelog.* |
| 43 | + - usr/share/doc/*/NEWS.* |
| 44 | + - usr/share/doc/*/TODO.* |
| 45 | + test: |
| 46 | + fedora-30: |
| 47 | + image: appimagecrafters/tests-env:fedora-30 |
| 48 | + command: ./AppRun |
| 49 | + use_host_x: true |
| 50 | + debian-stable: |
| 51 | + image: appimagecrafters/tests-env:debian-stable |
| 52 | + command: ./AppRun |
| 53 | + use_host_x: true |
| 54 | + archlinux-latest: |
| 55 | + image: appimagecrafters/tests-env:archlinux-latest |
| 56 | + command: ./AppRun |
| 57 | + use_host_x: true |
| 58 | + centos-7: |
| 59 | + image: appimagecrafters/tests-env:centos-7 |
| 60 | + command: ./AppRun |
| 61 | + use_host_x: true |
| 62 | + ubuntu-xenial: |
| 63 | + image: appimagecrafters/tests-env:ubuntu-xenial |
| 64 | + command: ./AppRun |
| 65 | + use_host_x: true |
| 66 | + runtime: |
| 67 | + env: |
| 68 | + GDK_BACKEND: x11 |
| 69 | + GIO_MODULE_DIR: $APPDIR/usr/lib/x86_64-linux-gnu/gio/modules/ |
| 70 | +AppImage: |
| 71 | + arch: x86_64 |
| 72 | + update-information: guess |
0 commit comments