about summary refs log tree commit diff
path: root/pkgs/pkgconfig/pkgconfig-build.sh
blob: 4cbce82670c9f824aebf96d6c5fed2cd3aeb0486 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
#! /bin/sh

export PATH=/bin:/usr/bin

mkdir $out || exit 1
cd $out || exit 1
tar xvfz $src || exit 1
cd pkgconfig-* || exit 1
./configure --prefix=$out || exit 1
make || exit 1
make install || exit 1
cd $out || exit 1
rm -rf pkgconfig-* || exit 1