mirror of
https://github.com/ilya-zlobintsev/LACT.git
synced 2025-02-25 18:55:26 -06:00
56 lines
1.3 KiB
YAML
56 lines
1.3 KiB
YAML
# appimage-builder recipe see https://appimage-builder.readthedocs.io for details
|
|
version: 1
|
|
script: |
|
|
rm AppDir -r | true
|
|
make build-release
|
|
make install DESTDIR=AppDir/usr
|
|
AppDir:
|
|
path: /home/ilya/dev/LACT/AppDir
|
|
app_info:
|
|
id: lact
|
|
name: LACT
|
|
icon: lact
|
|
version: latest
|
|
exec: usr/bin/lact
|
|
exec_args: $@
|
|
pacman:
|
|
include:
|
|
- gtk4
|
|
- wayland
|
|
- hwdata
|
|
exclude:
|
|
- llvm
|
|
- llvm-libs
|
|
- mesa
|
|
files:
|
|
include:
|
|
- /lib64/ld-linux-x86-64.so.2
|
|
exclude:
|
|
- usr/share/man
|
|
- usr/share/doc/*/README.*
|
|
- usr/share/doc/*/changelog.*
|
|
- usr/share/doc/*/NEWS.*
|
|
- usr/share/doc/*/TODO.*
|
|
- usr/include
|
|
- usr/share/locale
|
|
- etc
|
|
test:
|
|
fedora-30:
|
|
image: appimagecrafters/tests-env:fedora-30
|
|
command: ./AppRun help
|
|
debian-stable:
|
|
image: appimagecrafters/tests-env:debian-stable
|
|
command: ./AppRun help
|
|
archlinux-latest:
|
|
image: appimagecrafters/tests-env:archlinux-latest
|
|
command: ./AppRun help
|
|
centos-7:
|
|
image: appimagecrafters/tests-env:centos-7
|
|
command: ./AppRun help
|
|
ubuntu-xenial:
|
|
image: appimagecrafters/tests-env:ubuntu-xenial
|
|
command: ./AppRun help
|
|
AppImage:
|
|
arch: x86_64
|
|
update-information: guess
|