-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5d868bd
commit 90f96a6
Showing
1 changed file
with
17 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,30 @@ | ||
# TabAUR | ||
|
||
TabAUR is an AUR Helper that actually makes releases and it's written with C++, It supports downloading AUR Repositories only through git (for now) | ||
TabAUR is an AUR Helper that actually makes releases and it's written in C++, It supports downloading AUR Repositories with tarballs or git | ||
|
||
## Compilation | ||
### Compilation | ||
Just run `make`. | ||
|
||
If the compilation time is too slow, use `make -j$(nproc)` and it will use 100% of your CPU, making the compilation way faster. | ||
|
||
### Cleaning | ||
To clean, run `make clean`. | ||
|
||
## Dependencies | ||
you need to install some library dependencies, which you can by this command | ||
you need to install libgit2 and [cpr](https://github.com/libcpr/cpr). | ||
|
||
For `libgit2` can be installed by this command | ||
``` | ||
sudo pacman -S libgit2 libcpr | ||
sudo pacman -S libgit2 | ||
``` | ||
For cpr, | ||
TabAUR offers the choice to either use the [AUR version](https://aur.archlinux.org/packages/cpr) (recommended) | ||
|
||
rapidjson is pre-included in the source files and doesn't need to be installed | ||
Or by compiling and installing from source with the following commands: | ||
```bash | ||
git submodule init | ||
git submodule update --init --recursive | ||
make cpr | ||
make | ||
``` | ||
**NOTE:** using the compiled from source version can lead to bugs or errors. |