diff options
author | Eelco Dolstra <e.dolstra@tudelft.nl> | 2003-03-23T23·28+0000 |
---|---|---|
committer | Eelco Dolstra <e.dolstra@tudelft.nl> | 2003-03-23T23·28+0000 |
commit | 8d682ba551c44daecd427999114b9c520eef0296 (patch) | |
tree | 8705544a047453246d11ecfa03ecb75789fd9614 /test/build/gtkspell-build.sh | |
parent | 20d165c34467338f07c4808783cd50318c38a47b (diff) |
* A descriptor for running the Pan newsreader.
* Added descriptors for gtkspell and its support package pspell. Gtkspell is an optional dependency of Pan, so we should add the ability to nix-instantiate to instantiate variants of a package based on a selection of features.
Diffstat (limited to 'test/build/gtkspell-build.sh')
-rwxr-xr-x | test/build/gtkspell-build.sh | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/test/build/gtkspell-build.sh b/test/build/gtkspell-build.sh new file mode 100755 index 000000000000..d1e56943fabd --- /dev/null +++ b/test/build/gtkspell-build.sh @@ -0,0 +1,13 @@ +#! /bin/sh + +export PATH=$pkgconfig/bin:/bin:/usr/bin +export PKG_CONFIG_PATH=$glib/lib/pkgconfig:$atk/lib/pkgconfig:$pango/lib/pkgconfig:$gtk/lib/pkgconfig +export LD_LIBRARY_PATH=$glib/lib:$atk/lib:$pango/lib:$gtk/lib:$pspell/lib +export C_INCLUDE_PATH=$pspell/include + +top=`pwd` +tar xvfz $src +cd gtkspell-* +./configure --prefix=$top +make +make install |