`Arch Linux`에서 `pacman`을 사용할 때 패키지에 대한 설명 표시

`Arch Linux`에서 `pacman`을 사용할 때 패키지에 대한 설명 표시

pacmanArch 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(또는 ) 와 비교할 때 이 한 줄 요약을 얻는 것뿐만 아니라 자유 텍스트 정보가 포함된 하나 또는 여러 개의 추가 단락을 얻을 수도 있습니다 .aptitudeDebian StablePureOS 9.0 Amberapt 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

그만큼로제타pacmanpacman -Si는 or pacman -Qi와 동등하다고 말하지만 추가 자유 텍스트 설명이 누락되었습니다(아직 프로그램을 모르는 경우 매우 유용함).apt showzypper info

pacman이를 활성화하는 옵션이 있습니까 ? 아니면 이 정보가 저장소 Arch Linux또는 Parabola저장소에서 누락된 것입니까?

답변1

이것이 (모든) 파생 배포판에 해당되는지는 알 수 없지만 Arch Linux의 패키지에는 간단한 설명만 있습니다. 이는아치 위키파일 페이지 PKGBUILD(패키지를 빌드하는 데 사용되는 스크립트):

pkgdesc
패키지에 대한 설명입니다. 80자 이하를 권장합니다 [...]

그리고아치 패키지 지침; 특히, 참조패키지 에티켓절:

패키지에 대한 패키지 설명을 생성할 때 [...]. 또한 설명을 80자 이하로 유지하세요.

을 보면서데비안 정책, 패키지에 대한 확장된 설명은 (일반적으로) 업스트림에서 제공되지 않으며 대신 패키지 작성자가 추가하도록 되어 있습니다. 그러한 관행은 Arch의 원칙과 일치하지 않는 것처럼 보일 것입니다.키스자연.

관련 정보