2003-03-20 14:25:01 -08:00
|
|
|
#! /bin/sh
|
|
|
|
|
2003-07-25 07:59:22 -07:00
|
|
|
. $stdenv/setup || exit 1
|
2003-03-20 14:25:01 -08:00
|
|
|
|
2003-06-18 10:17:33 -07:00
|
|
|
tar xvfz $src || exit 1
|
|
|
|
cd aterm-* || exit 1
|
2003-07-28 14:15:03 -07:00
|
|
|
./configure --prefix=$out --with-gcc || exit 1
|
2003-06-18 10:17:33 -07:00
|
|
|
make || exit 1
|
|
|
|
make install || exit 1
|
2003-07-28 14:15:03 -07:00
|
|
|
strip -S $out/lib/*.a || exit 1
|