From 393206fbf35634ded4093d55c502c8f76b0a8b09 Mon Sep 17 00:00:00 2001 From: Andoni Morales Alastruey Date: Thu, 8 Aug 2013 17:35:46 +0200 Subject: gas-preprocessor: fix checkout and install steps --- recipes/build-tools/gas-preprocessor.recipe | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/recipes/build-tools/gas-preprocessor.recipe b/recipes/build-tools/gas-preprocessor.recipe index 65f28bb..f95b211 100644 --- a/recipes/build-tools/gas-preprocessor.recipe +++ b/recipes/build-tools/gas-preprocessor.recipe @@ -8,10 +8,12 @@ class Recipe(recipe.Recipe): version = '0.0.0' licenses = [License.GPLv2] btype = BuildType.CUSTOM - remotes = {'origin': 'git://github.com/yuvi/gas-preprocessor.git'} - commit = 'f4a42dc077144c5b481ec4534a4c99d0808a9b2f' + remotes = {'origin': 'git://github.com/ylatuya/gas-preprocessor.git'} + commit = 'master' def install(self): + if not os.path.exists(os.path.join(self.config.prefix, 'bin')): + os.makedirs(os.path.join(self.config.prefix, 'bin')) shutil.copy (os.path.join(self.build_dir, 'gas-preprocessor.pl'), os.path.join(self.config.prefix, 'bin')) shell.call ('chmod +x %s' % -- cgit v1.2.3 From 5c32acb8d9191da6a95c442d510f3ec2045ff578 Mon Sep 17 00:00:00 2001 From: Andoni Morales Alastruey Date: Tue, 10 Sep 2013 16:25:25 +0200 Subject: gas-preprocessor: fix commit name --- recipes/build-tools/gas-preprocessor.recipe | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipes/build-tools/gas-preprocessor.recipe b/recipes/build-tools/gas-preprocessor.recipe index f95b211..1315c4f 100644 --- a/recipes/build-tools/gas-preprocessor.recipe +++ b/recipes/build-tools/gas-preprocessor.recipe @@ -9,7 +9,7 @@ class Recipe(recipe.Recipe): licenses = [License.GPLv2] btype = BuildType.CUSTOM remotes = {'origin': 'git://github.com/ylatuya/gas-preprocessor.git'} - commit = 'master' + commit = 'origin/master' def install(self): if not os.path.exists(os.path.join(self.config.prefix, 'bin')): -- cgit v1.2.3 From 1f64da0d4ce5ed89e9484a76f607689cb5355ff4 Mon Sep 17 00:00:00 2001 From: Andoni Morales Alastruey Date: Sun, 15 Sep 2013 12:45:37 +0200 Subject: gst-plugins-bad: add OS X's video source plugin --- recipes/gst-plugins-bad-static.recipe | 5 ++++- recipes/gst-plugins-bad.recipe | 3 +++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/recipes/gst-plugins-bad-static.recipe b/recipes/gst-plugins-bad-static.recipe index caea9d1..ca0d82c 100644 --- a/recipes/gst-plugins-bad-static.recipe +++ b/recipes/gst-plugins-bad-static.recipe @@ -118,7 +118,10 @@ class Recipe(custom.GStreamerStatic): ], Platform.WINDOWS: [ 'libgstwinscreencap', - ] + ], + Platform.DARWIN: [ + 'libgstosxvideosrc', + ] } platform_files_plugins_sys_devel = { diff --git a/recipes/gst-plugins-bad.recipe b/recipes/gst-plugins-bad.recipe index 6ac221f..e2729a7 100644 --- a/recipes/gst-plugins-bad.recipe +++ b/recipes/gst-plugins-bad.recipe @@ -131,6 +131,9 @@ class Recipe(recipe.Recipe): ], Platform.WINDOWS: [ 'lib/gstreamer-0.10/libgstwinscreencap%(mext)s', + ], + Platform.DARWIN: [ + 'lib/gstreamer-0.10/libgstosxvideosrc%(mext)s', ] } -- cgit v1.2.3