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

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

First pass at setting up necessary packages, needed for Evince to compile

  • Property svn:executable set to *
File size: 903 bytes
Line 
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
12export CFLAGS="-I$prefix/include"
13export LDFLAGS="-L$prefix/lib"
14
15if [ ! -z $CROSSCOMPILE ] ; then
16 export LDFLAGS="$LDFLAGS -L/usr/local/poky/eabi-glibc/arm/lib/"
17
18 # Needs a bit of help so it can pass the test that looks for
19 # 'dbus-binding-tool'
20
21 export PATH=$PATH:/usr/local/poky/eabi-glibc/arm/arm-poky-linux-gnueabi/usr/bin
22fi
23
24
25opt_run_untar $force_untar $auto_untar $package $version
26opt_run_configure $force_config $auto_config $package $version "$prefix" \
27 --disable-scrollkeeper --without-keyring
28
29opt_run_make $compile $package $version
30opt_run_make $install $package $version "install"
31opt_run_make $clean $package $version "clean"
32opt_run_make $distclean $package $version "distclean"
33
34opt_run_tarclean $tarclean $package $version
Note: See TracBrowser for help on using the repository browser.