blob: 0b5de5aeaea8341047b64dda807ee37968b73454 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#!/bin/bash
DEPS=(glibc)
SOURCE=https://gitlab.freedesktop.org/pkg-config/pkg-config
DESC="a tool for passing the include path to build tools during configure and make phases of package installations"
build () {
./autogen.sh
./configure --prefix=/usr --disable-host-tool --docdir=/usr/share/doc/pkg-config
make
make check
make DESTDIR=$PKG_DEST install
}
|