mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-06-07 07:58:51 +00:00
deploying: cerbero: fix missing markup
This commit is contained in:
parent
0c0135c265
commit
61e31a8e3c
1 changed files with 8 additions and 9 deletions
|
@ -129,9 +129,8 @@ to do anything before the software is built, or the `install` and
|
||||||
after installation. Take a look at the existing recipes in
|
after installation. Take a look at the existing recipes in
|
||||||
`cerbero/recipes` for example.
|
`cerbero/recipes` for example.
|
||||||
|
|
||||||
Alternatively, you can pass some options to cerbero-uninstalled so some
|
Alternatively, you can pass some options to `cerbero-uninstalled` so some
|
||||||
of these attributes are already set for you. For
|
of these attributes are already set for you. For example:
|
||||||
example:
|
|
||||||
|
|
||||||
```
|
```
|
||||||
./cerbero-uninstalled add-recipe --licenses "LGPL" --deps "glib" --origin "git://git.my-app.com" --commit "git-commit-to-use" my-app 1.0
|
./cerbero-uninstalled add-recipe --licenses "LGPL" --deps "glib" --origin "git://git.my-app.com" --commit "git-commit-to-use" my-app 1.0
|
||||||
|
@ -229,8 +228,7 @@ The following Package attributes are used to describe your package:
|
||||||
> ![warning] At least one of the “files” attributes should be set.
|
> ![warning] At least one of the “files” attributes should be set.
|
||||||
|
|
||||||
Alternatively you can also pass some options to `cerbero-uninstalled`,
|
Alternatively you can also pass some options to `cerbero-uninstalled`,
|
||||||
for
|
for example:
|
||||||
example:
|
|
||||||
|
|
||||||
``` bash
|
``` bash
|
||||||
./cerbero-uninstalled add-package my-app 1.0 --license "LGPL" --codename MyApp --vendor MyAppVendor --url "http://www.my-app.com" --files=my-app:bins:libs --files-devel=my-app:devel --platform-files=linux:my-app:linux_specific --platform-files-devel=linux:my-app:linux_specific_devel,windows:my-app:windows_specific_devel --deps base-system --includes gstreamer-core
|
./cerbero-uninstalled add-package my-app 1.0 --license "LGPL" --codename MyApp --vendor MyAppVendor --url "http://www.my-app.com" --files=my-app:bins:libs --files-devel=my-app:devel --platform-files=linux:my-app:linux_specific --platform-files-devel=linux:my-app:linux_specific_devel,windows:my-app:windows_specific_devel --deps base-system --includes gstreamer-core
|
||||||
|
@ -260,9 +258,10 @@ class Package(package.Package):
|
||||||
'libtheora:libs', 'wavpack:libs', 'libvpx:libs',
|
'libtheora:libs', 'wavpack:libs', 'libvpx:libs',
|
||||||
'taglib:libs', 'opus:libs', 'libvorbis:libs',
|
'taglib:libs', 'opus:libs', 'libvorbis:libs',
|
||||||
'openjpeg:libs', 'openh264:libs', 'spandsp:libs',
|
'openjpeg:libs', 'openh264:libs', 'spandsp:libs',
|
||||||
'gst-plugins-base-1.0:plugins_codecs', 'gst-plugins-good-1.0:plugins_codecs',
|
'gst-plugins-base-1.0:plugins_codecs',
|
||||||
'gst-plugins-bad-1.0:plugins_codecs', 'gst-plugins-ugly-1.0:plugins_codecs',
|
'gst-plugins-good-1.0:plugins_codecs',
|
||||||
]
|
'gst-plugins-bad-1.0:plugins_codecs',
|
||||||
|
'gst-plugins-ugly-1.0:plugins_codecs']
|
||||||
files_devel = ['gst-plugins-base-1.0-static:plugins_codecs_devel',
|
files_devel = ['gst-plugins-base-1.0-static:plugins_codecs_devel',
|
||||||
'gst-plugins-good-1.0-static:plugins_codecs_devel',
|
'gst-plugins-good-1.0-static:plugins_codecs_devel',
|
||||||
'gst-plugins-bad-1.0-static:plugins_codecs_devel',
|
'gst-plugins-bad-1.0-static:plugins_codecs_devel',
|
||||||
|
@ -294,7 +293,7 @@ package file like the other package files in GStreamer. Just
|
||||||
list all packages you need in the `deps` variable and put the files your
|
list all packages you need in the `deps` variable and put the files your
|
||||||
software needs inside the `files` variables. When building a package
|
software needs inside the `files` variables. When building a package
|
||||||
this way you must make sure that you use the same prefix and
|
this way you must make sure that you use the same prefix and
|
||||||
packages\_prefix as the ones in your Cerbero configuration file.
|
`packages_prefix` as the ones in your Cerbero configuration file.
|
||||||
|
|
||||||
Finally, build your package by using:
|
Finally, build your package by using:
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue