# lilv mit Homebrew, apk, apt, dnf, MacPorts, Nix, pacman, zypper installieren

Prüfe Installationswege, Executables, Metadaten und Sicherheitshinweise für lilv in AI-Agent-Workflows.

## Installation

```sh
sudo av install brew:lilv
```

Weitere Installationsbefehle:

### macOS

- Homebrew (100%):

```sh
brew install lilv
```

  Evidenz: local Homebrew formula metadata

- MacPorts (94%):

```sh
sudo port install lilv
```

  Evidenz: MacPorts ports tree: audio/lilv/Portfile from https://api.github.com/repos/macports/macports-ports/git/trees/master?recursive=1

### Linux

- apk (92%):

```sh
sudo apk add lilv
```

  Evidenz: Alpine Linux edge package indexes: lilv from https://dl-cdn.alpinelinux.org/alpine/edge/community/x86_64/APKINDEX.tar.gz

- Debian apt (92%):

```sh
sudo apt install liblilv-0-0
```

  Evidenz: Debian stable package indexes: liblilv-0-0 from https://deb.debian.org/debian/dists/stable/main/binary-amd64/Packages.xz

- dnf (92%):

```sh
sudo dnf install lilv
```

  Evidenz: Fedora Rawhide package metadata: lilv from https://dl.fedoraproject.org/pub/fedora/linux/development/rawhide/Everything/x86_64/os/repodata/e5ca8ce900cd68f5419e1c39ae517343100b306336cbaeb70a3c153121d95094-primary.xml.zst

- Nix (92%):

```sh
nix profile install nixpkgs#lilv
```

  Evidenz: nixpkgs package indexes: pkgs/by-name/li/lilv/package.nix from https://api.github.com/repos/NixOS/nixpkgs/git/trees/master?recursive=1

- pacman (92%):

```sh
sudo pacman -S lilv
```

  Evidenz: Arch Linux sync databases: lilv from https://geo.mirror.pkgbuild.com/extra/os/x86_64/extra.db.tar.gz

- zypper (92%):

```sh
sudo zypper install liblilv-0-0
```

  Evidenz: openSUSE Tumbleweed package metadata: liblilv-0-0 from https://download.opensuse.org/tumbleweed/repo/oss/repodata/be8d3611d25469107f32075a1697e69ec57a2b850b42348a658cc671ad5ec2b50760d02c3e59524d50da9a11d5be799bdaffba2e166e8ca8858512e3c0bd665d-primary.xml.zst

## Paketfakten

- **Paketschlüssel:** brew:lilv
- **Paketmanager:** Homebrew
- **Paketmanager-Seite:** <https://formulae.brew.sh/formula/lilv>
- **Version:** 0.28.0
- **Quellzusammenfassung:** C library to use LV2 plugins
- **Homepage:** <https://drobilla.net/software/lilv.html>
- **Repository:** <https://gitlab.com/lv2/lilv>
- **Upstream-Dokumentation:** <https://drobilla.net/docs/lilv>
- **Lizenz:** ISC
- **Quellarchiv:** <https://download.drobilla.net/lilv-0.28.0.tar.xz>
- **Zuletzt aktualisiert:** 2026-06-09T04:16:18Z
- **Generiert:** 2026-07-08T07:18:31+00:00

## Executables

- lv2apply (cli)
- lv2bench (cli)
- lv2info (cli)
- lv2ls (cli)
- lv2apply (Alias)
- lv2bench (Alias)
- lv2info (Alias)
- lv2ls (Alias)

## Abhängigkeiten

- libsndfile
- lv2
- serd
- sord
- sratom
- zix

## Build-Abhängigkeiten

- meson
- ninja
- pkgconf
- python@3.14

## Installationsverhalten

- Post-install-Hook: nicht definiert
- Bottle: verfügbar auf arm64_linux, arm64_sequoia, arm64_sonoma, arm64_tahoe, sonoma, x86_64_linux

## Version und Aktualität

- Seite generiert: 2026-07-08
- Manager-Version: 0.28.0
- Manager aktualisiert: 2026-06-09
- lokale Daten: OK
- Upstream-Repository: https://drobilla.net/software/lilv.html
- Info: Release/tag comparison is only available for GitHub repositories.
## Projektgeschichte und Nutzung

Lilv is David Robillard's C library for discovering, inspecting, loading, running, and saving state for LV2 audio plugins. It is infrastructure rather than an end-user audio app: hosts use Lilv so they do not have to implement the LV2 metadata and loading model themselves.

### Projektgeschichte

Lilv sits in the Drobilla/LV2 family of small C libraries that support the LV2 plugin ecosystem. Its documentation describes it as the standard implementation used by nearly all LV2 hosts and as a portable API over the details of the LV2 specification on POSIX, macOS, and Windows.

The project was previously associated with SLV2 in distribution descriptions, then settled into the Lilv name as the LV2 host library. Public tags include early 0.x releases and later 0.24 and 0.28 series releases, reflecting a long-lived support-library role rather than a flashy application release cycle.

### Adoptionsgeschichte

Lilv's adoption follows LV2 adoption in Linux and cross-platform audio software. Because LV2 represents plugins as bundles with RDF/Turtle metadata, hosts need reliable discovery, querying, instantiation, UI, and state handling; Lilv became the common package that distributions could provide for that job.

### Wie es verwendet wird

Developers link against Lilv from LV2 hosts, plugin test tools, and command-line utilities such as lv2ls, lv2info, lv2apply, and lv2bench. End users usually encounter it indirectly when a DAW, plugin host, or audio workstation package pulls it in.

### Warum Paket-Nerds sich dafür interessieren

Lilv matters to package maintainers because it is a dependency hinge in the Linux audio stack: a small C library that can determine whether LV2 hosts and plugins discover each other correctly across filesystem layouts, plugin bundles, and platform-specific search paths.

### Zeitleiste

- 2015-11-13: The GitLab tag page records the v0.4.0 Lilv tag after project-specific tag migration.
- 2020: LV2 1.18.x release notes described the standard as a plugin system with C APIs and self-contained bundles.
- 2023-10-22: Lilv 0.24.22 was announced on drobilla.net.
- 2026: Lilv documentation described it as the standard implementation used by nearly all LV2 hosts.

### Related projects

- Lilv is related to LV2 itself, Suil for LV2 plugin UIs, Sratom for LV2 atoms, Serd and Sord for RDF handling, and Jalv as a simple LV2 host. It also sits historically near LADSPA and DSSI, older Linux audio plugin interfaces that LV2 aimed to supersede.

### Quellen

- <https://drobilla.net/2023/10/22/lilv-0-24-22.html>
- <https://drobilla.net/docs/lilv/>
- <https://drobilla.net/software/lilv.html>
- <https://gitlab.com/lv2/lilv>
- <https://gitlab.com/lv2/lilv/-/tags/v0.4.0>
- <https://lv2plug.in/>


## Sicherheitshinweise

library-like package without higher-risk signals.

- **Geiger-Risiko:** grün / niedrig
- library-like package without higher-risk signals

## Details aus der Quelldatenbank

- **Source Database:** Homebrew formula API
- **Tap:** homebrew/core
- **Full Name:** lilv
- **Version Scheme:** 0
- **Revision:** 0
- **Bottle Stable Root URL:** <https://ghcr.io/v2/homebrew/core>
- **Deprecated:** no
- **Disabled:** no
- **Keg Only:** no
- **URL Keys:** stable

## Andere Paketmanager-Einträge

- Debian apt - liblilv-0-0 - 0.24.26-1: normalized package name match | Debian stable package indexes: liblilv-0-0 from https://deb.debian.org/debian/dists/stable/main/binary-amd64/Packages.xz | library for simple use of LV2 plugins | https://drobilla.net/software/lilv.html
- Debian apt - liblilv-dev - 0.24.26-1: normalized package name match | Debian stable package indexes: liblilv-dev from https://deb.debian.org/debian/dists/stable/main/binary-amd64/Packages.xz | library for simple use of LV2 plugins (development files) | https://drobilla.net/software/lilv.html
- Debian apt - liblilv-doc - 0.24.26-1: normalized package name match | Debian stable package indexes: liblilv-doc from https://deb.debian.org/debian/dists/stable/main/binary-amd64/Packages.xz | library for simple use of LV2 plugins (documentation) | https://drobilla.net/software/lilv.html
- Debian apt - lilv-utils - 0.24.26-1: normalized package name match | Debian stable package indexes: lilv-utils from https://deb.debian.org/debian/dists/stable/main/binary-amd64/Packages.xz | library for simple use of LV2 plugins (runtime files) | https://drobilla.net/software/lilv.html
- Debian apt - python3-lilv - 0.24.26-1: normalized package name match | Debian stable package indexes: python3-lilv from https://deb.debian.org/debian/dists/stable/main/binary-amd64/Packages.xz | Python bindings for lilv | https://drobilla.net/software/lilv.html
- Nix - lilv: normalized package name match | nixpkgs package indexes: pkgs/by-name/li/lilv/package.nix from https://api.github.com/repos/NixOS/nixpkgs/git/trees/master?recursive=1
- Ubuntu apt - liblilv-0-0 - 0.24.22-1build1: normalized package name match | Ubuntu 24.04 LTS package indexes: liblilv-0-0 from https://archive.ubuntu.com/ubuntu/dists/noble/universe/binary-amd64/Packages.gz | library for simple use of LV2 plugins | https://drobilla.net/software/lilv.html
- Ubuntu apt - liblilv-dev - 0.24.22-1build1: normalized package name match | Ubuntu 24.04 LTS package indexes: liblilv-dev from https://archive.ubuntu.com/ubuntu/dists/noble/universe/binary-amd64/Packages.gz | library for simple use of LV2 plugins (development files) | https://drobilla.net/software/lilv.html
- Ubuntu apt - lilv-utils - 0.24.22-1build1: normalized package name match | Ubuntu 24.04 LTS package indexes: lilv-utils from https://archive.ubuntu.com/ubuntu/dists/noble/universe/binary-amd64/Packages.gz | library for simple use of LV2 plugins (runtime files) | https://drobilla.net/software/lilv.html
- Ubuntu apt - python3-lilv - 0.24.22-1build1: normalized package name match | Ubuntu 24.04 LTS package indexes: python3-lilv from https://archive.ubuntu.com/ubuntu/dists/noble/universe/binary-amd64/Packages.gz | Python bindings for lilv | https://drobilla.net/software/lilv.html
- apk - lilv - 0.24.26-r1: normalized package name match | Alpine Linux edge package indexes: lilv from https://dl-cdn.alpinelinux.org/alpine/edge/community/x86_64/APKINDEX.tar.gz | C library for simpler use of LV2 plugins | https://drobilla.net/software/lilv
- apk - lilv-bash-completion - 0.24.26-r1: normalized package name match | Alpine Linux edge package indexes: lilv-bash-completion from https://dl-cdn.alpinelinux.org/alpine/edge/community/x86_64/APKINDEX.tar.gz | Bash completions for lilv | https://drobilla.net/software/lilv
- apk - lilv-dev - 0.24.26-r1: normalized package name match | Alpine Linux edge package indexes: lilv-dev from https://dl-cdn.alpinelinux.org/alpine/edge/community/x86_64/APKINDEX.tar.gz | C library for simpler use of LV2 plugins (development files) | https://drobilla.net/software/lilv
- apk - lilv-doc - 0.24.26-r1: normalized package name match | Alpine Linux edge package indexes: lilv-doc from https://dl-cdn.alpinelinux.org/alpine/edge/community/x86_64/APKINDEX.tar.gz | C library for simpler use of LV2 plugins (documentation) | https://drobilla.net/software/lilv
- apk - lilv-libs - 0.24.26-r1: normalized package name match | Alpine Linux edge package indexes: lilv-libs from https://dl-cdn.alpinelinux.org/alpine/edge/community/x86_64/APKINDEX.tar.gz | C library for simpler use of LV2 plugins (libraries) | https://drobilla.net/software/lilv
- apk - py3-lilv - 0.24.26-r1: normalized package name match | Alpine Linux edge package indexes: py3-lilv from https://dl-cdn.alpinelinux.org/alpine/edge/community/x86_64/APKINDEX.tar.gz | C library for simpler use of LV2 plugins (python module) | https://drobilla.net/software/lilv


## Verwandte Links

- [Terminal utility packages](https://www.automicvault.com/de/pkg/terminal-utilities/) - Matched terminal and command-line workflow metadata.
- [Networking and protocol packages](https://www.automicvault.com/de/pkg/networking-protocol-tools/) - Matched network, protocol, or remote-service metadata.
- [Media and graphics packages](https://www.automicvault.com/de/pkg/media-graphics-tools/) - Matched media, image, audio, video, or graphics metadata.
- [Web development packages](https://www.automicvault.com/de/pkg/web-dev-tools/) - Matched web development metadata.
- [libsndfile](https://www.automicvault.com/de/pkg/brew/libsndfile/) - Runtime dependency declared by Homebrew.
- [lv2](https://www.automicvault.com/de/pkg/brew/lv2/) - Runtime dependency declared by Homebrew.
- [serd](https://www.automicvault.com/de/pkg/brew/serd/) - Runtime dependency declared by Homebrew.
- [sord](https://www.automicvault.com/de/pkg/brew/sord/) - Runtime dependency declared by Homebrew.
- [meson](https://www.automicvault.com/de/pkg/brew/meson/) - Build dependency declared by Homebrew.
- [ninja](https://www.automicvault.com/de/pkg/brew/ninja/) - Build dependency declared by Homebrew.
- [pkgconf](https://www.automicvault.com/de/pkg/brew/pkgconf/) - Build dependency declared by Homebrew.
- [python@3.14](https://www.automicvault.com/de/pkg/brew/python-3-14/) - Build dependency declared by Homebrew.
- [carla](https://www.automicvault.com/de/pkg/brew/carla/) - Shares av.db curated category or tags: audio, cli, lv2, media, plugin-host.
- [ladspa-sdk](https://www.automicvault.com/de/pkg/brew/ladspa-sdk/) - Shares av.db curated category or tags: audio, cli, media, plugins.
- [pmdmini](https://www.automicvault.com/de/pkg/brew/pmdmini/) - Shares av.db curated category or tags: audio, c-library, cli, media.
- [abcde](https://www.automicvault.com/de/pkg/brew/abcde/) - Shares av.db curated category or tags: audio, cli, media.
- [adplay](https://www.automicvault.com/de/pkg/brew/adplay/) - Shares av.db curated category or tags: audio, cli, media.
- [adplug](https://www.automicvault.com/de/pkg/brew/adplug/) - Shares av.db curated category or tags: audio, cli, media.
- [aften](https://www.automicvault.com/de/pkg/brew/aften/) - Shares av.db curated category or tags: audio, cli, media.
- [alsa-lib](https://www.automicvault.com/de/pkg/brew/alsa-lib/) - Shares av.db curated category or tags: audio, cli, media.

## Combined YAML source

View the package source record on GitHub. [combined/lilv.yml](https://github.com/automic-vault/db/blob/main/combined/lilv.yml)


## Quellen

- Nucleus package database
- Geiger risk classifier
- package-page enrichment
- curated package history
- package version freshness
- av.db category and tag curation
- package relationship graph
- external package-manager database matches
- cross-ecosystem install command graph
