diff options
author | Roger Monk <r-monk@ti.com> | 2010-03-20 10:52:18 +0000 |
---|---|---|
committer | Koen Kooi <koen@openembedded.org> | 2010-04-12 19:43:27 +0200 |
commit | d851b22811173569fc145bf8f9eb4c2ab95d7a0e (patch) | |
tree | 897e1e9fe6dd7a383e971dd91eb681ebec3a51c4 /recipes/gstd/gstd_git.bb | |
parent | 91f4c88f233c26f434d182e0c00c22709a8496fb (diff) |
gstd/freondemo: Align with arago file locations
* Move gstd and freondemo recipes to recipes/gstd /freondemo
* Prepare for recipe sync
* Later needs renaming and finding new (more appropriate) home
Signed-off-by: Roger Monk <r-monk@ti.com>
Signed-off-by: Koen Kooi <k-kooi@ti.com>
Diffstat (limited to 'recipes/gstd/gstd_git.bb')
-rw-r--r-- | recipes/gstd/gstd_git.bb | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/recipes/gstd/gstd_git.bb b/recipes/gstd/gstd_git.bb new file mode 100644 index 0000000000..143b4b60d5 --- /dev/null +++ b/recipes/gstd/gstd_git.bb @@ -0,0 +1,31 @@ +DESCRIPTION = "Gstd: a Gstreamer-based streaming server" +HOMEPAGE = "http://sourceforge.net/projects/harrier/" +MAINTAINER = "harrier-devel@lists.sourceforge.net" +LICENSE = "BSD" +SECTION = "multimedia" +PRIORITY = "optional" + +DEPENDS = "dbus dbus-glib gstreamer" +RDEPENDS = "gst-plugins-base" + +SRCREV = "7ba92f30db6f72531554a7b0335e757182c60020" + +PV = "1.0" +PR = "r7" +PR_append = "+gitr${SRCREV}" + +SRC_URI = "git://gstd.git.sourceforge.net/gitroot/gstd/gstd;protocol=git \ + " + +S = "${WORKDIR}/git" + +inherit autotools pkgconfig + +# We don't want to run autoconf or automake, unless you have +# automake > 1.11 with vala support +do_configure() { + oe_runconf +} + +FILES_${PN} += "${datadir}/dbus-1/*/*.service" +FILES_${PN}-dev += "${datadir}/dbus-1/interfaces/*.xml" |