11 lines
203 B
Bash
11 lines
203 B
Bash
|
#! /bin/sh
|
||
|
|
||
|
. $stdenv/setup || exit 1
|
||
|
|
||
|
tar xvfz $src || exit 1
|
||
|
cd gc* || exit 1
|
||
|
./configure --prefix=$out --disable-shared || exit 1
|
||
|
make || exit 1
|
||
|
make install || exit 1
|
||
|
strip -S $out/lib/*.a || exit 1
|