10 lines
122 B
Bash
10 lines
122 B
Bash
|
#! /bin/sh
|
||
|
|
||
|
export PATH=$pkgconfig/bin:/bin:/usr/bin
|
||
|
|
||
|
tar xvfj $src
|
||
|
cd glib-*
|
||
|
./configure --prefix=$out
|
||
|
make
|
||
|
make install
|