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

Last change on this file since 32887 was 31158, checked in by ak19, 7 years ago

When recommitting the file with the right permissions, had accidentally copied LIBXML's contents rather than the originally committed LIBXSLT's contents. Correcting.

  • Property svn:executable set to *
File size: 723 bytes
Line 
1#!/bin/bash
2
3# now we're compiling everything statically, libxslt is needed for the GS2 release-kit to compile yaz successfully
4# on the Mac Mountain Lion
5# libxslt-1.1.28.tar.gz
6package=libxslt
7version=-1.1.28
8
9
10progname=$0
11
12source ../cascade-make/lib/cascade-lib.bash GEXTGNOME ../.. $*
13
14prefix=$GEXTGNOME_INSTALLED
15
16opt_run_untar $force_untar $auto_untar $package $version
17opt_run_configure $force_config $auto_config $package $version $prefix \
18 --disable-shared --enable-static
19
20opt_run_make $compile $package $version
21opt_run_make $install $package $version "install"
22opt_run_make $clean $package $version "clean"
23opt_run_make $distclean $package $version "distclean"
24
25opt_run_tarclean $tarclean $package $version
Note: See TracBrowser for help on using the repository browser.