summaryrefslogtreecommitdiff
path: root/HowToCompileForEmbedded.mdwn
diff options
context:
space:
mode:
authorJoe Rayhawk <jrayhawk@freedesktop.org>2015-04-02 16:37:07 -0700
committerJoe Rayhawk <jrayhawk@freedesktop.org>2015-04-02 16:37:07 -0700
commit582272f1ed968c3aad33c60c1cb3967fe77701a9 (patch)
tree460044538a0433dc21eded7dfea833bf3b26e159 /HowToCompileForEmbedded.mdwn
parent0baaa64b067922dd76bdb135c745d9ea0f49295a (diff)
moin2mdwn: convert page HowToCompileForEmbedded
Diffstat (limited to 'HowToCompileForEmbedded.mdwn')
-rw-r--r--HowToCompileForEmbedded.mdwn55
1 files changed, 55 insertions, 0 deletions
diff --git a/HowToCompileForEmbedded.mdwn b/HowToCompileForEmbedded.mdwn
new file mode 100644
index 0000000..37658f8
--- /dev/null
+++ b/HowToCompileForEmbedded.mdwn
@@ -0,0 +1,55 @@
+
+The easiest way to build GStreamer is with a scratchbox environment, either scratchbox, or scratchbox2.
+
+Set prefix to the place where you want GStreamer to be installed.
+
+
+### glib
+
+
+[[!format txt """
+./configure --prefix="$prefix" --disable-static --with-html-dir=/tmp/dump
+make install
+"""]]
+
+### gstreamer
+
+
+[[!format txt """
+./configure --prefix="$prefix" --disable-nls --disable-static --disable-gobject-cast-checks --enable-binary-registry --disable-loadsave --disable-trace --with-html-dir=/tmp/dump
+make install
+"""]]
+
+### orc (replaces liboil)
+
+
+[[!format txt """
+./configure --prefix="$prefix" --disable-static --with-html-dir=/tmp/dump
+make install
+"""]]
+
+### gst-plugins-base
+
+
+[[!format txt """
+./configure --prefix="$prefix" --disable-nls --disable-static --with-html-dir=/tmp/dump
+make install
+"""]]
+
+### gst-plugins-good
+
+
+[[!format txt """
+./configure --prefix="$prefix" --disable-nls --disable-static --with-html-dir=/tmp/dump --with-plugins=avi,qtdemux
+make install
+"""]]
+_Note_: If you want all the plug-ins remove the **with-plugins** option, otherwise specify the ones you want
+
+
+### gst-plugins-ugly
+
+
+[[!format txt """
+./configure --prefix="$prefix" --disable-nls --disable-static --with-html-dir=/tmp/dump --with-plugins=asfdemux
+make install
+"""]] \ No newline at end of file