* Fix descriptors for Pan and its dependencies.

This commit is contained in:
Eelco Dolstra 2003-04-23 21:21:06 +00:00
parent f546e0cda4
commit 49e0d743d7
15 changed files with 145 additions and 52 deletions

View file

@ -4,11 +4,11 @@ export PATH=$pkgconfig/bin:/bin:/usr/bin
export PKG_CONFIG_PATH=$glib/lib/pkgconfig
export LD_LIBRARY_PATH=$glib/lib
top=`pwd`
tar xvfj $src
cd pango-*
./configure --prefix=$top
make
make install
cd ..
rm -rf pango-*
top=`pwd` || exit 1
tar xvfj $src || exit 1
cd pango-* || exit 1
./configure --prefix=$top || exit 1
make || exit 1
make install || exit 1
cd $top || exit 1
rm -rf pango-* || exit 1