1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-17 19:21:04 +00:00
nixpkgs/build/glib-build.sh

13 lines
152 B
Bash
Raw Normal View History

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