Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 28 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,34 @@ sudo apt-get install -f
### arch
The latest release is in the AUR under the name [please-cli](https://aur.archlinux.org/packages/please-cli). It can be installed [manually](https://wiki.archlinux.org/title/Arch_User_Repository) or with [a helper](https://wiki.archlinux.org/title/AUR_helpers).

#### Using an AUR helper (recommended)

With [yay](https://github.com/Jguer/yay):
```bash
yay -S please-cli
```

With [paru](https://github.com/Morganamilo/paru):
```bash
paru -S please-cli
```

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Optionally: add (aurutils is the helper I use^^)

With aurutils

aur sync please-cli
sudo pacman -S please-cli

Copy link
Copy Markdown
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I have added this method as well.

#### Using aurutils

If you're using [aurutils](https://github.com/aurutils/aurutils) to manage AUR packages:

```bash
# First, ensure you have an aurutils repository set up
# If not, follow the aurutils setup instructions first

# Sync the AUR database and download the package
aur sync please-cli

# Install the package from your local repository
sudo pacman -S please-cli
```

#### Manual installation
Alternatively, you can build the package from source via
```bash
wget https://raw.githubusercontent.com/TNG/please-cli/main/PKGBUILD
Expand Down