1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-28 16:42:09 +00:00
nixpkgs/build/pkgconfig-build.sh

13 lines
147 B
Bash
Raw Normal View History

#! /bin/sh
export PATH=/bin:/usr/bin
top=`pwd`
tar xvfz $src
cd pkgconfig-*
./configure --prefix=$top
make
make install
cd ..
rm -rf pkgconfig-*