2003-03-24 00:28:28 +01:00
|
|
|
#! /bin/sh
|
|
|
|
|
|
|
|
export PATH=$pkgconfig/bin:$gnet/bin:/bin:/usr/bin
|
|
|
|
export PKG_CONFIG_PATH=$glib/lib/pkgconfig:$atk/lib/pkgconfig:$pango/lib/pkgconfig:$gtk/lib/pkgconfig:$gtkspell/lib/pkgconfig
|
|
|
|
export LD_LIBRARY_PATH=$glib/lib:$atk/lib:$pango/lib:$gtk/lib:$gnet/lib:$pspell/lib:$gtkspell/lib
|
|
|
|
|
|
|
|
# A bug in gtkspell: the pspell library path is not exported
|
|
|
|
# through pkgconfig.
|
|
|
|
export LIBRARY_PATH=$pspell/lib
|
|
|
|
|
|
|
|
export LDFLAGS=-s
|
|
|
|
|
|
|
|
top=`pwd`
|
2003-04-23 23:21:06 +02:00
|
|
|
tar xvfj $src || exit 1
|
|
|
|
cd pan-* || exit 1
|
|
|
|
./configure --prefix=$top || exit 1
|
|
|
|
make || exit 1
|
|
|
|
make install || exit 1
|
|
|
|
cd $top || exit 1
|
|
|
|
rm -rf pan-* || exit 1
|