Amusiz

(★ 34)

An Amazon Music client for Linux (unpretentious)

File Explorer

  • .gitignore
  • AppImageBuilder.yml
  • COPYING
  • meson.build
  • pm.mirko.Amusiz.json
  • pm.mirko.Amusiz.yml
  • README.md
  • snapcraft.yaml

# Use via CDN

jsDelivr

jsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.

Command Glossary

Commands referenced in this DOCs, explained below.

🔍

meson

View Details ▼

SCons-like build system that uses Python as a front-end language and Ninja as a building backend.

meson init

Generate a project with default values:

meson init {{[-l|--language]}} c {{[-n|--name]}} {{myproject}} --version {{0.1}}

Generate a C project with a given name and version:

meson {{[build|setup build]}}

Configure a directory named `build` with default values for compilation:

🔍

ninja

View Details ▼

A Build system designed to be fast.

ninja

Build in the current directory:

ninja -j {{4}}

Build in the current directory, executing 4 [j]obs at a time in parallel:

ninja -C {{path/to/directory}}

Build a program in a given directory:

🔍

flatpak-builder

View Details ▼

Help build application dependencies.

flatpak-builder {{path/to/build_directory}} {{path/to/manifest}}

Build a Flatpak and export it to a new repository:

flatpak-builder --repo {{repository_name}} {{path/to/build_directory}} {{path/to/manifest}}

Build a Flatpak and export it to the specified repository:

flatpak-builder --install {{path/to/build_directory}} {{path/to/manifest}}

Build a Flatpak and install it locally:

🔍

flatpak

View Details ▼

Build, install, and run flatpak applications and runtimes.

flatpak run {{com.example.app}}

Run an installed application:

flatpak install {{remote_name}} {{com.example.app}}

Install an application from a remote source:

flatpak list --app

List installed applications, ignoring runtimes:

// repository documentation