source: gs2-extensions/gnome-lib/trunk/src/packages/CASCADE-MAKE.sh@ 23375

Last change on this file since 23375 was 23375, checked in by sjm84, 13 years ago

Adding XML-Parser and expat to the packages needed for gnome-lib

  • Property svn:executable set to *
File size: 631 bytes
Line 
1#!/bin/bash
2
3source ../cascade-make/lib/cascade-lib.bash GEXTGNOME .. $*
4
5for d in LIBZ LIBBZ2 EXPAT XMLPARSER INTLTOOL GETTEXT PKG-CONFIG LIBXML GLIB LIBGSF; do
6 echo " Running CASCADE-MAKE/$d.sh"
7
8 ./CASCADE-MAKE/$d.sh $*
9
10 if [ $? != 0 ] ; then
11 echo "Error encountered running CASCADE-MAKE/$d.sh"
12 exit 1
13 fi
14done
15
16if [ $install = "1" ] ; then
17 touch "$GEXTGNOME_INSTALLED/lib/pkgconfig/.fixed-prefix.awk"
18fi
19
20if [ $makedist = "1" ] ; then
21 rm -f "$GEXTGNOME_INSTALLED/lib/pkgconfig/.fixed-prefix.awk"
22 lalist=`find $GEXTGNOME_INSTALLED/lib -name "*.la"`
23 if [ -n "$lalist" ] ; then
24 rm -f $lalist
25 fi
26fi
Note: See TracBrowser for help on using the repository browser.