source: gs3-extensions/mars-src/trunk/packages/CASCADE-MAKE/TAGLIB.sh@ 34677

Last change on this file since 34677 was 34677, checked in by davidb, 3 years ago

Development of supporting packages for essenstia through cascade-make. This was done before it was found the essentia includes a 3rd-party building script that can be run that essentially does the same thing. Commit these files for referece, but not currently being used

  • Property svn:executable set to *
File size: 960 bytes
Line 
1#!/bin/bash
2
3package=taglib
4version=-1.11.1
5
6progname=$0
7
8source ../cascade-make/lib/cascade-lib.bash GEXT_MARS ../.. $*
9
10prefix=$GEXT_MARS_INSTALLED
11
12opt_run_untar $force_untar $auto_untar $package $version
13
14#opt_run_configure $force_config $auto_config $package $version $prefix
15if [ $force_config = "1" ] ; then
16 echo "[pushd $package$version]"
17 cd $package$version ;
18
19 if [ ! -f Makefile ] ; then \
20 #cmake -D CMAKE_BUILD_TYPE=RELEASE \
21 # -D CMAKE_INSTALL_PREFIX=$prefix ..;
22 cmake -DCMAKE_BUILD_TYPE=Release \
23 -DCMAKE_INSTALL_PREFIX=$prefix
24# -DCMAKE_C_FLAGS="$CFLAGS" \
25# -DCMAKE_CXX_FLAGS="$CXXFLAGS" \
26# -DCMAKE_EXE_LINKER_FLAGS="$LDFLAGS"
27 fi ;
28 cd ..
29
30fi
31
32opt_run_make $compile $package $version
33opt_run_make $install $package $version "install"
34
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.