summaryrefslogtreecommitdiff
path: root/README.txt
blob: 9e4b13241115360bb75ad21c11283f3200ce48c6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34


---------
pkgbuilds
---------

This is my personal collection of packaging files for Arch Linux (PKGBUILDs).
In addition to my own personal PKGBUILD files there are also some from the AUR
which are added as Git submodules.


Usage
-----

Clone the repository to your machine (I prefer the own home directory):

	cd  # going to home directory
	git clone --recurse-submodules https://cgit.xengineering.eu/pkgbuilds

Use these commands to build software based on the included PKGBUILD files:

	cd pkgbuilds/<software>
	makepkg -si

This will install all needed dependencies (-s), build the package and install
(-i) it. You can also use `cd pkgbuilds/AUR/<software>` to use PKGBUILD files
from the Arch Linux user repository which I use myself.

You can remove the package with this command:

	pacman -Rsn <software>

This will remove (-R) the package including the dependencies (-s) and all
configuration files (-n).