/etc/apt/apt.conf.d/50appstream is in appstream 0.9.4-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 | ## This file is provided by appstreamcli(1) to download DEP-11
## metadata files.
Acquire::IndexTargets {
# The YAML metadata files
deb::DEP-11 {
MetaKey "$(COMPONENT)/dep11/Components-$(NATIVE_ARCHITECTURE).yml";
ShortDescription "Components-$(NATIVE_ARCHITECTURE)";
Description "$(RELEASE)/$(COMPONENT) $(NATIVE_ARCHITECTURE) DEP-11 Metadata";
KeepCompressed "true";
KeepCompressedAs "gz";
};
# Normal-sized icons for GUI components described in the DEP-11
# YAML metadata.
deb::DEP-11-icons {
MetaKey "$(COMPONENT)/dep11/icons-64x64.tar";
ShortDescription "icons-64x64";
Description "$(RELEASE)/$(COMPONENT) DEP-11 64x64 Icons";
KeepCompressed "true";
KeepCompressedAs "gz";
};
# Icons suitable for HiDPI displays, for GUI components described in
# the DEP-11 YAML metadata.
deb::DEP-11-icons-hidpi {
MetaKey "$(COMPONENT)/dep11/icons-128x128.tar";
ShortDescription "icons-128x128";
Description "$(RELEASE)/$(COMPONENT) DEP-11 128x128 Icons";
KeepCompressed "true";
KeepCompressedAs "gz";
DefaultEnabled "false";
};
};
# Refresh AppStream cache when APT's cache is updated (i.e. apt update)
APT::Update::Post-Invoke-Success {
"if /usr/bin/test -w /var/cache/app-info -a -e /usr/bin/appstreamcli; then appstreamcli refresh > /dev/null; fi";
};
|