summary refs log tree commit diff
path: root/pkgs/gtkspell/gtkspell-build.sh
blob: 52bf7db5204ecd374dbd236ae3e28066fa0ee7d8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#! /bin/sh

envpkgs="$gtk $pspell"
. $stdenv/setup || exit 1
export PATH=$pkgconfig/bin:$PATH

export C_INCLUDE_PATH=$pspell/include:$C_INCLUDE_PATH

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