blob: 7a9050b30786701d8c9755db9b418aa8c157ae0c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#### Creating the `hdfs-lib-cpp` Package
* Clone the package from AUR:
```
git clone https://aur.archlinux.org/hdfs-lib-cpp.git;
```
* Configure, Build and Create the Package:
```
# while at the folder of `PKGBUILD`
cd hdfs-lib-cpp;
chmod -R 777 ./;
sudo -u swcdb_builder makepkg --printsrcinfo > .SRCINFO;
sudo -u swcdb_builder makepkg -s -r;
# Install
sudo -u swcdb_builder makepkg -i;
```
|