4ec5cab7a5
TODO: clean up the Perl build. Currently it's still using some external libraries, and it doesn't pass all its unit tests. svn path=/nixpkgs/trunk/; revision=326
14 lines
253 B
Bash
Executable file
14 lines
253 B
Bash
Executable file
#! /bin/sh
|
|
|
|
envpkgs=$glib
|
|
. $stdenv/setup || exit 1
|
|
export PATH=$pkgconfig/bin:$perl/bin:$PATH
|
|
|
|
tar xvfj $src || exit 1
|
|
cd atk-* || exit 1
|
|
./configure --prefix=$out || exit 1
|
|
make || exit 1
|
|
make install || exit 1
|
|
|
|
echo $envpkgs > $out/envpkgs || exit 1
|