d7d58daff4
* Fix gtkspell. svn path=/nixpkgs/trunk/; revision=371
15 lines
341 B
Bash
Executable file
15 lines
341 B
Bash
Executable file
#! /bin/sh
|
|
|
|
envpkgs="$gtk $pspell"
|
|
. $stdenv/setup || exit 1
|
|
export PATH=$pkgconfig/bin:$PATH
|
|
export NIX_CFLAGS_COMPILE="-I$pspell/include $NIX_CFLAGS_COMPILE"
|
|
|
|
tar xvfz $src || exit 1
|
|
cd gtkspell-* || exit 1
|
|
./configure --prefix=$out --disable-gtk-doc || exit 1
|
|
make || exit 1
|
|
make install || exit 1
|
|
|
|
echo $envpkgs > $out/envpkgs || exit 1
|