mirror of
https://github.com/KRTirtho/spotube.git
synced 2025-09-12 23:45:18 +00:00
51 lines
1.8 KiB
YAML
51 lines
1.8 KiB
YAML
# appimage-builder recipe see https://appimage-builder.readthedocs.io for details
|
|
version: 1
|
|
script:
|
|
- rm -rf AppDir || true
|
|
- cp -r build/linux/x64/release/bundle AppDir
|
|
- mkdir -p AppDir/usr/share/icons/hicolor/64x64/apps/
|
|
- cp assets/spotube-logo.png AppDir/usr/share/icons/hicolor/64x64/apps/
|
|
AppDir:
|
|
path: ./AppDir
|
|
app_info:
|
|
id: oss.krtirtho.spotube
|
|
name: Spotube
|
|
icon: spotube-logo
|
|
version: 2.0.0
|
|
exec: spotube
|
|
exec_args: $@
|
|
apt:
|
|
arch: amd64
|
|
allow_unauthenticated: true
|
|
sources:
|
|
- sourceline: deb http://bd.archive.ubuntu.com/ubuntu/ hirsute main restricted
|
|
- sourceline: deb http://bd.archive.ubuntu.com/ubuntu/ hirsute-updates main restricted
|
|
- sourceline: deb http://bd.archive.ubuntu.com/ubuntu/ hirsute universe
|
|
- sourceline: deb http://bd.archive.ubuntu.com/ubuntu/ hirsute-updates universe
|
|
- sourceline: deb http://bd.archive.ubuntu.com/ubuntu/ hirsute multiverse
|
|
- sourceline: deb http://bd.archive.ubuntu.com/ubuntu/ hirsute-updates multiverse
|
|
- sourceline:
|
|
deb http://bd.archive.ubuntu.com/ubuntu/ hirsute-backports main
|
|
restricted universe multiverse
|
|
- sourceline: deb http://security.ubuntu.com/ubuntu hirsute-security main restricted
|
|
- sourceline: deb http://security.ubuntu.com/ubuntu hirsute-security universe
|
|
- sourceline: deb http://security.ubuntu.com/ubuntu hirsute-security multiverse
|
|
include:
|
|
- libkeybinder-3.0-0
|
|
exclude:
|
|
- libx11-6
|
|
- libgtk-3-0
|
|
- libglib2.0-0
|
|
- libc6
|
|
files:
|
|
include: []
|
|
exclude:
|
|
- usr/share/man
|
|
- usr/share/doc/*/README.*
|
|
- usr/share/doc/*/changelog.*
|
|
- usr/share/doc/*/NEWS.*
|
|
- usr/share/doc/*/TODO.*
|
|
AppImage:
|
|
arch: x86_64
|
|
update-information: guess
|