d74192ee38
svn path=/nixpkgs/trunk/; revision=823
13 lines
216 B
Bash
Executable file
13 lines
216 B
Bash
Executable file
#! /bin/sh -e
|
|
|
|
buildinputs="$pkgconfig $perl $glib"
|
|
. $stdenv/setup
|
|
|
|
tar xvfj $src
|
|
cd atk-*
|
|
./configure --prefix=$out
|
|
make
|
|
make install
|
|
|
|
mkdir $out/nix-support
|
|
echo "$glib" > $out/nix-support/propagated-build-inputs
|