在 Arch Linux
上使用 pacman
時顯示軟體包描述
我想
pacman
在我的Arch Linux
機器上使用時(實際上Parabola GNU/Linux-Libre
)獲得有關我正在查詢的包的附加描述性(自由文本)資訊。雖然兩者都
pacman -Qi <name-of-package>
為pacman -Si <name-of-package>
我提供了一個名為 的欄位Description
,但它只包含一個包的單行摘要。例子:
$ pacman -Qi gimp ... Description: GNU Image Manipulation Programm ...
當將此與我的機器上的
apt
(或) (實際上)進行比較時,我可以使用or來獲得這個單行摘要,而是一個或幾個帶有自由文本資訊的附加段落。aptitude``Debian Stable``PureOS 9.0 Amber``apt show <name-of-package>``aptitude show <name-of-package>
例子:
$ apt show gimp ... Description: GNU Image Manipulation Program GIMP is an advanced picture editor. You can use it to edit, enhance, and retouch photos and scans, create drawings, and make your own images. It has a large collection of professional-level editing tools and filters, similar to the ones you might find in Photoshop. Numerous fine-control settings and features like layers, paths, masks, and scripting give you total control over your images. . Many image file formats are supported, including JPEG, Photoshop (.psd), and Paint Shop Pro (.psp) files. It can also be used to scan and print photos. . To open files remotely (like over HTTP), install the gvfs-backends package. . To use a MIDI device (like a musical keyboard) as an input controller in GIMP, install libasound2 and read the how-to at /usr/share/doc/gimp/README.MIDI
Rosetta for
pacman
sais thatpacman -Si
orpacman -Qi
相當於apt show
orzypper info
,但我缺少額外的自由文本描述(如果我還不知道該程序,這顯然非常有用)。是否有
pacman
啟用該選項的選項?還是Arch Linux
- 或 - 儲存庫中缺少這些資訊Parabola
?
我不知道這是否適用於(所有)它的衍生髮行版,但 Arch Linux 上的軟體包只有那麼簡短的描述;Arch Wiki頁面中提到的
PKGBUILD
文件(用於建構包的腳本):pkgdesc
軟體包的描述。建議不超過 80 個字元
$$ … $$
為包創建包描述時
$$ … $$. 還要盡量將描述保持在大約 80 個字元或更少。
查看Debian Policy,軟體包的擴展描述(通常)不是來自上游,而是由打包者添加。這樣的做法似乎不符合 Arch 的KISS特性。