Arch User Repository
The Arch User Repository (AUR) is a community-driven repository for Arch users. It contains package descriptions (PKGBUILDs) that allow you to compile a package from source with makepkg and then install it via pacman. The AUR was created to organize and share new packages from the community and to help expedite popular packages' inclusion into the community repository. This document explains how users can access and utilize the AUR.
A good number of new packages that enter the official repositories start in the AUR. In the AUR, users are able to contribute their own package builds (PKGBUILD and related files). The AUR community has the ability to vote for packages in the AUR. If a package becomes popular enough — provided it has a compatible license and good packaging technique — it may be entered into the community repository (directly accessible by pacman or abs).
Setup
Simple build command
Installing and upgrading packages
AUR에서 패키지를 설치하는 것은 비교적 간단한 과정입니다. 본질적으로 :
- PKGBUILD 및 시스템 단위 및 패치와 같은 기타 필수 파일 (대개 실제 코드가 아님)을 포함한 빌드 파일을 확보하십시오.
- PKGBUILD 및 관련 파일이 악의적이거나 신뢰할 수 없는지 확인하십시오.
- 파일이 저장된 디렉토리에서
makepkg -si
를 실행합니다. 그러면 코드를 다운로드하고 pacman으로 종속성을 해결하고 컴파일하고 패키징 한 다음 패키지를 설치합니다.