source: gs2-extensions/video-and-audio/trunk/src/build-srcpack/packages/CASCADE-MAKE/HANDBRAKE.sh@ 27428

Last change on this file since 27428 was 27428, checked in by jmt12, 11 years ago

Handbrake appears to have some conditional compilation things lurking in it, as trying to do a full recompile doesn't. Added --force argument to compiling to make it do so

  • Property svn:executable set to *
File size: 849 bytes
Line 
1#!/bin/bash
2
3package=HandBrake
4
5version=-0.9.6
6
7progname=$0
8
9source ../../cascade-make/bin/script/test-setup.bash
10source ../../cascade-make/lib/cascade-lib.bash
11
12prefix=$GEXTVIDEO_INSTALLED
13
14opt_run_untar $force_untar $auto_untar $package $version
15opt_run_configure $force_config $auto_config $package $version "$prefix" "--disable-gtk" "--disable-gst" "--force"
16opt_run_tarclean $tarclean $package $version
17
18# **HACK** the first thing the run_make function does is change directory to
19# "$package$version", so I'll just append the build directory to the end of
20# version... Mwuhahaha
21versionbak=$version
22version=${version}/build
23opt_run_make $compile $package $version
24opt_run_make $install $package $version "install"
25opt_run_make $clean $package $version "clean"
26opt_run_make $distclean $package $version "distclean"
27version=$versionbak
28
Note: See TracBrowser for help on using the repository browser.