source: gs2-extensions/music-stand/trunk/runtime-srcpack/packages/CASCADE-MAKE/EVINCE.sh@ 22133

Last change on this file since 22133 was 22133, checked in by davidb, 14 years ago

Minor tweak to help compiling

  • Property svn:executable set to *
File size: 1.1 KB
RevLine 
[22129]1#!/bin/bash
2
3package=evince
4version=-2.24.2
5
6progname=$0
7
8source ../../cascade-make/lib/cascade-lib.bash
9
10prefix=$GEXTMUSICSTAND_INSTALLED
11
[22133]12export CFLAGS="-I$prefix/include -I$prefix/include/poppler/glib/"
[22129]13export LDFLAGS="-L$prefix/lib"
14
15if [ ! -z $CROSSCOMPILE ] ; then
[22133]16 export LDFLAGS="$LDFLAGS -L/usr/local/poky/eabi-glibc/arm/arm-poky-linux-gnueabi/usr/lib"
[22129]17
18 # Needs a bit of help so it can pass the test that looks for
19 # 'dbus-binding-tool'
20
[22133]21 echo "**** You might need to do the following to get 'dbus-binding-tool'"
22 echo "**** installed"
23 echo "**** sudo apt-get install libdbus-glib-1-dev"
24 echo "****"
25 ## export PATH=$PATH:$prefix/devel/bin
[22129]26fi
27
28
29opt_run_untar $force_untar $auto_untar $package $version
30opt_run_configure $force_config $auto_config $package $version "$prefix" \
31 --disable-scrollkeeper --without-keyring
32
33opt_run_make $compile $package $version
34opt_run_make $install $package $version "install"
35opt_run_make $clean $package $version "clean"
36opt_run_make $distclean $package $version "distclean"
37
38opt_run_tarclean $tarclean $package $version
Note: See TracBrowser for help on using the repository browser.