blob: beceddfb6469b9c086ea9f8ff5933357d0bbe976 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
#! /bin/sh
export PATH=/bin:/usr/bin
top=`pwd`
tar xvfz $src || exit 1
cd pkgconfig-* || exit 1
./configure --prefix=$top || exit 1
make || exit 1
make install || exit 1
cd .. || exit 1
rm -rf pkgconfig-* || exit 1
|