# pkg-config upgrade from 0.29.1 > 0.29.2
###### tags: `Linux` `pkg-config` `OS`
Sohail Anjum
Last update: 2021.09.29
### pkg-config upgrade from 0.29.1 > 0.29.2
### Downloading link for pkg-config 0.29.2
```javascript=
**Download the 0.29.2 pkg-config file from the give link direct into linux system**
```
https://fossies.org/linux/misc/pkg-config-0.29.2.tar.gz/

### extract the folder
```javascript=
# tar zxf pkg-config-0.29.2.tar.gz
```
```javascript=
# cd pkg-config-0.29.2
```
### Installation of Pkg-config
```javascript=
# ./configure --prefix=/usr \
--with-internal-glib \
--disable-host-tool \
--docdir=/usr/share/doc/pkg-config-0.29.2
```

### Compile the package
```javascript=
# make
```

### test the results, issue:
```javascript=
# make check
```

### Install the package:
```javascript=
# make install
```

### check the version
```javascript=
# pkg-config --version
0.29.2
```
### Package Config Cheatlist
https://jyhshin.pixnet.net/blog/post/26588033