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