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

Last change on this file since 25827 was 25827, checked in by jmt12, 12 years ago

Cascade make file for Handbrake replete with hacky goodness to make it work

  • Property svn:executable set to *
File size: 839 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"
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.